Skip to content

Commit

Permalink
Add trove classifiers.
Browse files Browse the repository at this point in the history
Add trove classifiers for Python 3. This makes <http://py3readiness.org> display the status of this package correctly :).
  • Loading branch information
vaibhavsagar committed Dec 3, 2014
1 parent cf582e7 commit c2f6fe0
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,16 @@ def read(fname):
packages=['qds_sdk'],
scripts=['bin/qds.py'],
install_requires=INSTALL_REQUIRES,
long_description=read('README.rst')
long_description=read('README.rst'),
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4"
]
)

0 comments on commit c2f6fe0

Please sign in to comment.