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