diff options
author | Bruno ReniƩ <brutasse@gmail.com> | 2014-03-04 19:29:15 +0100 |
---|---|---|
committer | Bruno ReniƩ <brutasse@gmail.com> | 2014-03-04 19:29:15 +0100 |
commit | 8c923032c76f7e17fd45b5f90f14ffb899ae5dcd (patch) | |
tree | dbaebbaaea391184ba507b1be98936b87dc3456e /setup.py | |
parent | e3a5c53173c5cff3afd25900b726993967ed81b7 (diff) | |
download | python-magic-8c923032c76f7e17fd45b5f90f14ffb899ae5dcd.tar.gz |
Add some classifiers for PyPI
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -14,5 +14,16 @@ supports both textual and MIME-type output. """, keywords="mime magic file", license="PSF", - test_suite='test' + test_suite='test', + classifiers=[ + 'Intended Audience :: Developers', + 'License :: OSI Approved :: Python Software Foundation License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + ], ) |