]> git.scottworley.com Git - git-cache/blobdiff - setup.py
Specify license
[git-cache] / setup.py
index e0ad3b1d76ed8d6e78804ae37618efdc99780c6d..434f4a7731e0cfcea6c3567ff46d64394b5a2005 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,6 +3,11 @@ from setuptools import setup
 setup(
     name="git_cache",
     version="1.4.2",
-    entry_points={'console_scripts': ['git-cache = git_cache:_main']},
+    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']},
 )