update the list of officially supported Python versions in setup.py

Removed Python 3.0 & 3.1 off the list and added Python 3.4.

--HG--
branch : setup cleanup
This commit is contained in:
Jurko Gospodnetić 2014-05-13 19:03:17 +02:00
parent c64af0d9ce
commit 8f9a88ef7a
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ classifiers = ['Development Status :: 6 - Mature',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'] + [
('Programming Language :: Python :: %s' % x) for x in
'2 2.6 2.7 3 3.0 3.1 3.2 3.3'.split()]
'2 2.6 2.7 3 3.2 3.3 3.4'.split()]
long_description = open('README.rst').read()