summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2016-07-29 11:24:56 +0000
committerJelmer Vernooij <jelmer@jelmer.uk>2016-07-29 11:24:56 +0000
commit2ebabf9b0f668722f9c50c411aa94f23c8fdedb5 (patch)
tree5fd47c8b676164be4124faa04080e9a2342ab9e1
parent0fb263850967757240937ba3d0290f2f38d8d0cd (diff)
downloadpython-fastimport-git-2ebabf9b0f668722f9c50c411aa94f23c8fdedb5.tar.gz
Add classifiers.
-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',
+ ],
+ )