Skip to content
Snippets Groups Projects
Commit 56e346de authored by Alexandru Fikl's avatar Alexandru Fikl
Browse files

update setup.py

parent 48857e40
No related branches found
No related tags found
No related merge requests found
...@@ -9,25 +9,25 @@ try: ...@@ -9,25 +9,25 @@ try:
finally: finally:
version_file.close() version_file.close()
exec(compile(version_file_contents, "pymbolic/version.py", 'exec'), ver_dic) exec(compile(version_file_contents, "pymbolic/version.py", "exec"), ver_dic)
setup(name="pymbolic", setup(name="pymbolic",
version=ver_dic["VERSION_TEXT"], version=ver_dic["VERSION_TEXT"],
description="A package for symbolic computation", description="A package for symbolic computation",
long_description=open("README.rst").read(), long_description=open("README.rst").read(),
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', "Development Status :: 4 - Beta",
'Intended Audience :: Developers', "Intended Audience :: Developers",
'Intended Audience :: Other Audience', "Intended Audience :: Other Audience",
'Intended Audience :: Science/Research', "Intended Audience :: Science/Research",
'License :: OSI Approved :: MIT License', "License :: OSI Approved :: MIT License",
'Natural Language :: English', "Natural Language :: English",
'Programming Language :: Python', "Programming Language :: Python",
'Programming Language :: Python :: 3', "Programming Language :: Python :: 3",
'Topic :: Scientific/Engineering', "Topic :: Scientific/Engineering",
'Topic :: Scientific/Engineering :: Mathematics', "Topic :: Scientific/Engineering :: Mathematics",
'Topic :: Software Development :: Libraries', "Topic :: Software Development :: Libraries",
'Topic :: Utilities', "Topic :: Utilities",
], ],
author="Andreas Kloeckner", author="Andreas Kloeckner",
author_email="inform@tiker.net", author_email="inform@tiker.net",
...@@ -39,5 +39,4 @@ setup(name="pymbolic", ...@@ -39,5 +39,4 @@ setup(name="pymbolic",
install_requires=[ install_requires=[
"pytools>=2", "pytools>=2",
"pytest>=2.3", "pytest>=2.3",
"six",
]) ])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment