]> git.scottworley.com Git - git-cache/blob - setup.py
Release 1.5.0
[git-cache] / setup.py
1 from setuptools import setup
2
3 setup(
4 name="git_cache",
5 version="1.5.0",
6 description="Cache git content locally",
7 author="Scott Worley",
8 author_email="scottworley@scottworley.com",
9 url="https://git.scottworley.com/git-cache",
10 py_modules=['git_cache'],
11 license="GPL-3.0",
12 entry_points={'console_scripts': ['git-cache = git_cache:_main']},
13 )