From 56e346de2dbb4f9198688f9615c6cc151dfd9dba Mon Sep 17 00:00:00 2001 From: Alexandru Fikl <alexfikl@gmail.com> Date: Thu, 4 Feb 2021 20:44:33 -0600 Subject: [PATCH] update setup.py --- setup.py | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/setup.py b/setup.py index bc9277e..bfa8432 100644 --- a/setup.py +++ b/setup.py @@ -9,25 +9,25 @@ try: finally: 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", version=ver_dic["VERSION_TEXT"], description="A package for symbolic computation", long_description=open("README.rst").read(), classifiers=[ - '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 :: 3', - 'Topic :: Scientific/Engineering', - 'Topic :: Scientific/Engineering :: Mathematics', - 'Topic :: Software Development :: Libraries', - 'Topic :: Utilities', + "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 :: 3", + "Topic :: Scientific/Engineering", + "Topic :: Scientific/Engineering :: Mathematics", + "Topic :: Software Development :: Libraries", + "Topic :: Utilities", ], author="Andreas Kloeckner", author_email="inform@tiker.net", @@ -39,5 +39,4 @@ setup(name="pymbolic", install_requires=[ "pytools>=2", "pytest>=2.3", - "six", ]) -- GitLab