]> git.scottworley.com Git - pinch/blame - setup.py
Release 3.0.13
[pinch] / setup.py
CommitLineData
b5964ec3
SW
1from setuptools import setup
2
3setup(
25e38f08 4 name='pinch',
02f83340 5 version='3.0.13',
05a3d87b
SW
6 description="Cache git content locally",
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)