]>
Commit | Line | Data |
---|---|---|
bef7ce53 SW |
1 | from setuptools import setup |
2 | ||
3 | setup( | |
4 | name="git_cache", | |
50c43b55 | 5 | version="1.5.0-pre", |
50685beb 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", | |
bef7ce53 | 10 | py_modules=['git_cache'], |
50685beb SW |
11 | license="GPL-3.0", |
12 | entry_points={'console_scripts': ['git-cache = git_cache:_main']}, | |
bef7ce53 | 13 | ) |