]> git.scottworley.com Git - git-cache/blame - setup.py
Release 1.5.0
[git-cache] / setup.py
CommitLineData
bef7ce53
SW
1from setuptools import setup
2
3setup(
4 name="git_cache",
3acf0fa7 5 version="1.5.0",
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)