]>
Commit | Line | Data |
---|---|---|
b5964ec3 SW |
1 | from setuptools import setup |
2 | ||
3 | setup( | |
25e38f08 | 4 | name='pinch', |
df45b011 | 5 | version='3.0.10', |
05a3d87b SW |
6 | description="Cache git content locally", |
7 | author="Scott Worley", | |
8 | author_email="scottworley@scottworley.com", | |
9 | url="https://git.scottworley.com/git-cache", | |
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 | ) |