From a6f50e7be6f13bb814c47fe8a3a44cd34138f87e Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sun, 21 Feb 2016 10:02:44 -0800 Subject: [PATCH] Added explicity Python 2 & 3 version classifiers to package --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b5b2a40..bebea42 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='Flask-HTTPAuth', - version='2.7.1', + version='2.7.2', url='http://github.com/miguelgrinberg/flask-httpauth/', license='MIT', author='Miguel Grinberg', @@ -23,13 +23,15 @@ install_requires=[ 'Flask' ], - test_suite = "test_httpauth", + test_suite="test_httpauth", classifiers=[ 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules' ]