diff --git a/setup.py b/setup.py index bc9277e129f74232a74812327e5eaa88e43d3169..bfa8432c051f5b704c0de4246ab232064d9e70e2 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", ])