Skip to content

Commit f5be67c

Browse files
committed
Document all supported Python versions as trove classifiers
I frequently use PyPI trove classifiers to check if a 3rd party package is usable by my projects. Documenting the supported versions makes this much easier for potential library users.
1 parent 4538f43 commit f5be67c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,15 @@ def get_long_description():
5151
'Operating System :: OS Independent',
5252
'Programming Language :: Python',
5353
'Programming Language :: Python :: 2',
54+
'Programming Language :: Python :: 2.6',
55+
'Programming Language :: Python :: 2.7',
5456
'Programming Language :: Python :: 3',
57+
'Programming Language :: Python :: 3.3',
58+
'Programming Language :: Python :: 3.4',
59+
'Programming Language :: Python :: 3.5',
60+
'Programming Language :: Python :: 3.6',
61+
'Programming Language :: Python :: Implementation :: CPython',
62+
'Programming Language :: Python :: Implementation :: PyPy',
5563
'Topic :: Software Development :: Libraries :: Python Modules',
5664
],
5765
test_suite='testsuite.test_all.suite',

0 commit comments

Comments
 (0)