Merge pull request #182 from singingwolfboy/pypi-classifiers

PyPI classifiers
This commit is contained in:
Steve Pulec 2014-09-08 22:11:16 -04:00
commit e8968becd4

View File

@ -33,4 +33,15 @@ setup(
},
packages=find_packages(exclude=("tests", "tests.*")),
install_requires=install_requires,
license="Apache",
test_suite="tests",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Testing",
],
)