Complete setup.py for pypi
authorGuido Günther <agx@sigxcpu.org>
Fri, 17 Oct 2014 16:24:01 +0000 (18:24 +0200)
committerGuido Günther <agx@sigxcpu.org>
Fri, 17 Oct 2014 16:41:05 +0000 (18:41 +0200)
setup.py

index fb6f624..3337c21 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -42,10 +42,25 @@ def fetch_version():
 
     return version
 
+
+def readme():
+    with open('README') as file:
+        return file.read()
+
 setup(name = "gbp",
       version = fetch_version(),
       author = u'Guido Günther',
       author_email = 'agx@sigxcpu.org',
+      url = 'https://honk.sigxcpu.org/piki/projects/git-buildpackage/',
+      description = 'Suite to help with Debian packages in Git repositories',
+      license = 'GPLv2+',
+      long_description = readme(),
+      classifiers = [
+          'Environment :: Console',
+          'Programming Language :: Python :: 2',
+          'Topic :: Software Development :: Version Control :: Git',
+          'Operating System :: POSIX :: Linux',
+      ],
       scripts = [ 'bin/git-buildpackage',
                   'bin/git-import-dsc',
                   'bin/git-import-orig',