Skip to content
Snippets Groups Projects
Commit 39822ea4 authored by Joseph Weston's avatar Joseph Weston
Browse files

add Trove classifiers

Specify only Python3 support in trove classifiers.
https://www.python.org/dev/peps/pep-0301/#distutils-trove-classification
parent ecfd5d86
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,18 @@ CYTHON_OPTION = '--cython'
TUT_DIR = 'tutorial'
TUT_GLOB = 'doc/source/tutorial/*.py'
TUT_HIDDEN_PREFIX = '#HIDDEN'
CLASSIFIERS = """\
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Intended Audience :: Developers
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Topic :: Scientific/Engineering
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows"""
# Let Kwant itself determine its own version. We cannot simply import kwant, as
# it is not built yet.
......@@ -462,7 +474,8 @@ def main():
include_dirs=include_dirs,
setup_requires=['numpy > 1.6.1', 'nose >= 1.0'],
install_requires=['numpy > 1.6.1', 'scipy >= 0.9', 'tinyarray'],
extras_require={'plotting': 'matplotlib >= 1.2'})
extras_require={'plotting': 'matplotlib >= 1.2'},
classifiers=[c.strip() for c in CLASSIFIERS.split('\n')])
if __name__ == '__main__':
main()
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