summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 1a9fa60..2e6d8dd 100755
--- 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',
+ ],
+ )