From 8dc02f8cc0b70a562c69f6680624d5e34b7ec4ed Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Wed, 11 Jan 2017 15:38:25 +0100 Subject: [PATCH] Add Trove classifiers. --- setup.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/setup.py b/setup.py index a5d6584..423b2d2 100644 --- a/setup.py +++ b/setup.py @@ -32,6 +32,29 @@ author_email = "donald.stufft@gmail.com", maintainer = "Samuel Giles", maintainer_email = "sam.e.giles@gmail.com", + classifiers=[ + # See: https://pypi.python.org/pypi?:action=list_classifiers + 'Development Status :: 4 - Beta', + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + # List of python versions and their support status: + # https://en.wikipedia.org/wiki/CPython#Version_history + '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.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', + 'Topic :: Internet :: WWW/HTTP :: HTTP Servers', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Software Development :: Testing', + ], packages = ["slumber"], zip_safe = False, install_requires = install_requires,