diff options
author | Sebastian Pipping <sping@gentoo.org> | 2020-01-31 17:04:45 +0100 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2020-01-31 17:05:38 +0100 |
commit | c481e878e000546a09ffbd9b1490c4c8cfad2c9a (patch) | |
tree | e5f9fbd0a62275bd7bb654e68f23438b8b2c0ab1 | |
parent | setup.py: Set project URL (diff) | |
download | metagen-c481e878e000546a09ffbd9b1490c4c8cfad2c9a.tar.gz metagen-c481e878e000546a09ffbd9b1490c4c8cfad2c9a.tar.bz2 metagen-c481e878e000546a09ffbd9b1490c4c8cfad2c9a.zip |
setup.py: Add trove classifiers
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
-rwxr-xr-x | setup.py | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -73,7 +73,25 @@ def main(): 'console_scripts': [ "metagen = metagen.__main__:main", ], - } + }, + + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', + 'Natural Language :: English', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Topic :: Software Development', + 'Topic :: Text Processing :: Markup :: XML', + 'Topic :: Utilities', + ] ) |