]>
Commit | Line | Data |
---|---|---|
1 | from setuptools import setup | |
2 | ||
3 | setup( | |
4 | name='pinch', | |
5 | version='3.0.15-pre', | |
6 | description="Cache git content locally", | |
7 | author="Scott Worley", | |
8 | author_email="scottworley@scottworley.com", | |
9 | url="https://git.scottworley.com/pinch", | |
10 | py_modules=['pinch'], | |
11 | license="GPL-3.0", | |
12 | entry_points={'console_scripts': ['pinch = pinch:main']}, | |
13 | dependency_links=['https://scottworley.com/git/git-cache'], | |
14 | ) |