diff --git a/setup.py b/setup.py index bc4533ef..ef3fb3f8 100644 --- a/setup.py +++ b/setup.py @@ -8,9 +8,22 @@ setup(name='pyerrors', description='Error analysis for lattice QCD', long_description=long_description, long_description_content_type='text/markdown', + url="https://github.com/fjosw/pyerrors", author='Fabian Joswig', author_email='fabian.joswig@ed.ac.uk', + license="MIT", packages=find_packages(), python_requires='>=3.6.0', - install_requires=['numpy>=1.16', 'autograd>=1.4', 'numdifftools', 'matplotlib>=3.3', 'scipy', 'iminuit>=2', 'h5py', 'lxml', 'python-rapidjson'] + install_requires=['numpy>=1.16', 'autograd>=1.4', 'numdifftools', 'matplotlib>=3.3', 'scipy', 'iminuit>=2', 'h5py', 'lxml', 'python-rapidjson'], + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Topic :: Scientific/Engineering' + ], )