fix issue219 - add trove classifiers for py24-py33

This commit is contained in:
holger krekel 2012-11-06 09:14:41 +01:00
parent 002c5072af
commit c64699bba6
2 changed files with 6 additions and 2 deletions

View File

@ -18,6 +18,8 @@ Changes between 2.3.2 and 2.3.3.dev
- nose support: only call setup, if its a callable
- fix issue219 - add py2.4-3.3 classifiers to TROVE list
Changes between 2.3.1 and 2.3.2
-----------------------------------

View File

@ -43,8 +43,10 @@ def main():
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 3'],
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'] + [
("Programming Language :: Python :: %s" % x) for x in
"2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3".split()],
packages=['_pytest', '_pytest.assertion'],
py_modules=['pytest'],
zip_safe=False,