From c0bcacf6f9b0067abf7b7734556095f35e4e73fd Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Sun, 8 Oct 2017 14:27:30 +0100 Subject: [PATCH] setup: Trove classifiers These will help with future PyPI discovery, and should make it clear that Python 3.x is not (yet) supported. --- setup.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3f6595f7..dc8184b6 100644 --- a/setup.py +++ b/setup.py @@ -10,5 +10,21 @@ setup( license = 'OpenLDAP BSD', url = 'http://github.com/dw/mitogen/', packages = ['mitogen'], - zip_safe = False + zip_safe = False, + classifiers = [ + 'Development Status :: 3 - Alpha', + 'Environment :: Console', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: BSD License', + 'Operating System :: POSIX', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.4', + 'Programming Language :: Python :: 2.5', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 2 :: Only', + 'Programming Language :: Python :: Implementation :: CPython', + 'Topic :: System :: Distributed Computing', + 'Topic :: System :: Systems Administration', + ], )