From d7c9e4c8324bc24beb1da1d5187b2fb1ee26d482 Mon Sep 17 00:00:00 2001 From: Daniel Joshua Holmes Date: Mon, 17 Aug 2015 12:20:19 +1000 Subject: [PATCH] Add classifiers to setup.py Closes #150 --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 78119d69..ffb1a5b8 100755 --- a/setup.py +++ b/setup.py @@ -37,4 +37,12 @@ keywords="oauth", zip_safe = True, test_suite="tests", - tests_require=['coverage', 'mock']) + tests_require=['coverage', 'mock'], + classifiers=[ + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 2 :: Only', + 'License :: OSI Approved :: MIT License', + 'Natural Language :: English', + 'Development Status :: 5 - Production/Stable' + ])