]> git.scottworley.com Git - pinch/blame - setup.py
Fix package description in setup.py
[pinch] / setup.py
CommitLineData
b5964ec3
SW
1from setuptools import setup
2
3setup(
25e38f08 4 name='pinch',
c731a81f 5 version='3.0.15-pre',
235e32e3 6 description='PIN CHannels - a replacement for `nix-channel --update`',
05a3d87b
SW
7 author="Scott Worley",
8 author_email="scottworley@scottworley.com",
f10d0938 9 url="https://git.scottworley.com/pinch",
b5964ec3 10 py_modules=['pinch'],
05a3d87b 11 license="GPL-3.0",
25e38f08 12 entry_points={'console_scripts': ['pinch = pinch:main']},
d06918bc 13 dependency_links=['https://scottworley.com/git/git-cache'],
b5964ec3 14)