]>
Commit | Line | Data |
---|---|---|
b5964ec3 SW |
1 | from setuptools import setup |
2 | ||
3 | setup( | |
25e38f08 | 4 | name='pinch', |
a18858f8 | 5 | version='3.0.15', |
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 | ) |