Skip to content

Commit

Permalink
Added explicity Python 2 & 3 version classifiers to package
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Feb 21, 2016
1 parent 4acb941 commit a6f50e7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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'
]
Expand Down

0 comments on commit a6f50e7

Please sign in to comment.