add py3.5 to classifiers

This commit is contained in:
j 2016-06-08 15:50:57 +02:00
parent 77f8876fca
commit fa7f83e8c6

View file

@ -22,7 +22,7 @@ def get_version():
if rev: if rev:
version = "2.3.%s" % rev version = "2.3.%s" % rev
with open(__version, 'w') as fd: with open(__version, 'w') as fd:
fd.write('VERSION="%s"'%version) fd.write('VERSION="%s"' % version)
return version return version
elif os.path.exists(__version): elif os.path.exists(__version):
with open(__version) as fd: with open(__version) as fd:
@ -42,7 +42,7 @@ def get_version():
setup( setup(
name="ox", name="ox",
version=get_version() , version=get_version(),
description="python-ox - the web in a dict", description="python-ox - the web in a dict",
author="0x2620", author="0x2620",
author_email="0x2620@0x2620.org", author_email="0x2620@0x2620.org",
@ -51,15 +51,16 @@ setup(
license="GPLv3", license="GPLv3",
packages=['ox', 'ox.torrent', 'ox.web'], packages=['ox', 'ox.torrent', 'ox.web'],
install_requires=['six>=1.5.2', 'chardet', 'feedparser'], install_requires=['six>=1.5.2', 'chardet', 'feedparser'],
keywords = [ keywords=[
], ],
classifiers = [ classifiers=[
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
], ],
) )