Newer
Older
Andreas Klöckner
committed
Andreas Klöckner
committed
ver_dic = {}
version_file = open("pytools/version.py")
try:
version_file_contents = version_file.read()
finally:
version_file.close()
exec(compile(version_file_contents, "pytools/version.py", 'exec'), ver_dic)
Andreas Klöckner
committed
setup(name="pytools",
version=ver_dic["VERSION_TEXT"],
Andreas Klöckner
committed
description="A collection of tools for Python",
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
"decorator>=3.2.0",
"appdirs>=1.4.0",
Andreas Klöckner
committed
author_email="inform@tiker.net",