X-Git-Url: http://git.scottworley.com/git-cache/blobdiff_plain/866f291808c96e89c86adaa63634d89a58526ec7..HEAD:/setup.py diff --git a/setup.py b/setup.py index 6bc2393..7259998 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,12 @@ from setuptools import setup setup( name="git_cache", - version="1.4.0-pre", - entry_points={'console_scripts': ['git-cache = git_cache:_main']}, + version="1.5.0", + description="Cache git content locally", + author="Scott Worley", + author_email="scottworley@scottworley.com", + url="https://git.scottworley.com/git-cache", py_modules=['git_cache'], + license="GPL-3.0", + entry_points={'console_scripts': ['git-cache = git_cache:_main']}, )