]> git.scottworley.com Git - pinch/blob - setup.py
Keep the version in one place
[pinch] / setup.py
1 from setuptools import setup
2 from version import pinch_version
3
4 setup(
5 name='pinch',
6 version=pinch_version,
7 description='PIN CHannels - a replacement for `nix-channel --update`',
8 author="Scott Worley",
9 author_email="scottworley@scottworley.com",
10 url="https://git.scottworley.com/pinch",
11 py_modules=['pinch', 'version'],
12 license="GPL-3.0",
13 entry_points={'console_scripts': ['pinch = pinch:main']},
14 dependency_links=['https://scottworley.com/git/git-cache'],
15 )