Add classifiers.
authorJelmer Vernooij <jelmer@jelmer.uk>
Fri, 29 Jul 2016 11:24:56 +0000 (11:24 +0000)
committerJelmer Vernooij <jelmer@jelmer.uk>
Fri, 29 Jul 2016 11:24:56 +0000 (11:24 +0000)
setup.py

index 1a9fa6076735b7f12cd1751950e734b7ff58056c..2e6d8dd91d536aeb01da989bc153b81c714f9734 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -12,4 +12,16 @@ setup(name="fastimport",
       maintainer_email="jelmer@jelmer.uk",
       license="GNU GPL v2 or later",
       url="htps://github.com/jelmer/python-fastimport",
-      packages=['fastimport', 'fastimport.tests', 'fastimport.processors'])
+      packages=['fastimport', 'fastimport.tests', 'fastimport.processors'],
+      classifiers=[
+          'Development Status :: 4 - Beta',
+          'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
+          'Programming Language :: Python :: 2.7',
+          'Programming Language :: Python :: 3.4',
+          'Programming Language :: Python :: 3.5',
+          'Programming Language :: Python :: Implementation :: CPython',
+          'Programming Language :: Python :: Implementation :: PyPy',
+          'Operating System :: POSIX',
+          'Topic :: Software Development :: Version Control',
+      ],
+      )