From 9942c59851b76722ac0a8533102a3b886aff688b Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Tue, 24 Jan 2017 09:57:07 -0800 Subject: [PATCH] Fixed #505: Add classifiers to setup.py --- setup.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ca72807..ac0567f 100644 --- a/setup.py +++ b/setup.py @@ -15,5 +15,20 @@ setup( 'Django>=1.8', 'asgiref>=0.13', 'daphne>=1.0.0', - ] + ], + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Web Environment', + 'Framework :: Django', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Topic :: Internet :: WWW/HTTP', + ], )