X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/a085d7e37f649b0aae8d22e4dfb448049827b989..0927f970a6fb7033cf989de54c1a06d7ffaafc72:/setup.py?ds=sidebyside diff --git a/setup.py b/setup.py index a201941..b2a8c6d 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,15 @@ from setuptools import setup +from version import pinch_version setup( - name="pinch", - version="2.0.0", - py_modules=['pinch'], - entry_points={"console_scripts": ["pinch = pinch:main"]}, + name='pinch', + version=pinch_version, + description='PIN CHannels - a replacement for `nix-channel --update`', + author="Scott Worley", + author_email="scottworley@scottworley.com", + url="https://git.scottworley.com/pinch", + py_modules=['pinch', 'version'], + license="GPL-3.0", + entry_points={'console_scripts': ['pinch = pinch:main']}, + dependency_links=['https://scottworley.com/git/git-cache'], )