Fix for setup file

This commit is contained in:
Oliver Marks 2018-10-14 20:48:54 +01:00
parent 847557b213
commit 61715c2b28
1 changed files with 8 additions and 2 deletions

View File

@ -5,7 +5,7 @@ from setuptools import setup, find_packages
LICENSE_PATH = os.path.join(os.path.dirname(__file__), 'LICENSE') LICENSE_PATH = os.path.join(os.path.dirname(__file__), 'LICENSE')
README_PATH = os.path.join(os.path.dirname(__file__), 'readme.org') README_PATH = os.path.join(os.path.dirname(__file__), 'readme.org')
VERSION_PATH = os.path.join(os.path.dirname(__file__), 'parser', 'version.py') VERSION_PATH = os.path.join(os.path.dirname(__file__), 'eorg', 'version.py')
version = {} version = {}
with open(VERSION_PATH) as fp: with open(VERSION_PATH) as fp:
exec(fp.read(), version) exec(fp.read(), version)
@ -31,7 +31,6 @@ setup(
classifiers=[ classifiers=[
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: GPL-3 License', 'License :: OSI Approved :: GPL-3 License',
'Environment :: Web Environment',
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Programming Language :: Python', 'Programming Language :: Python',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
@ -39,6 +38,13 @@ setup(
'Topic :: Internet', 'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI', 'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML',
], ],
install_requires=[], install_requires=[],