aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorCosimo Lupo <cosimo.lupo@daltonmaag.com>2015-10-06 12:23:57 +0100
committerCosimo Lupo <cosimo.lupo@daltonmaag.com>2015-10-06 12:23:57 +0100
commit18a295452211dcae7e46fb947bb0f43954ead7ba (patch)
treec5e782b851f1c3f7c556baa571478499d04500c9 /setup.py
parentc85bb508cb86eaac98a4667e67e944018f5abbf2 (diff)
downloadbrotli-18a295452211dcae7e46fb947bb0f43954ead7ba.zip
brotli-18a295452211dcae7e46fb947bb0f43954ead7ba.tar.gz
brotli-18a295452211dcae7e46fb947bb0f43954ead7ba.tar.bz2
[setup.py] add PyPI trove classifiers
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 410808b..bc7a52f 100644
--- a/setup.py
+++ b/setup.py
@@ -194,6 +194,31 @@ setup(
author="Khaled Hosny",
author_email="khaledhosny@eglug.org",
license="Apache 2.0",
+ classifiers=[
+ 'Development Status :: 4 - Beta',
+ 'Environment :: Console',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: Apache Software License',
+ 'Operating System :: MacOS :: MacOS X',
+ 'Operating System :: Microsoft :: Windows',
+ 'Operating System :: POSIX :: Linux',
+ 'Programming Language :: C',
+ 'Programming Language :: C++',
+ 'Programming Language :: Python',
+ 'Programming Language :: Python :: 2',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Unix Shell',
+ 'Topic :: Software Development :: Libraries',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ 'Topic :: System :: Archiving',
+ 'Topic :: System :: Archiving :: Compression',
+ 'Topic :: Text Processing :: Fonts',
+ 'Topic :: Utilities',
+ ],
ext_modules=[brotli],
cmdclass={
'build_ext': BuildExt,