pyerrors/setup.py

41 lines
1.7 KiB
Python
Raw Normal View History

2020-10-13 16:53:00 +02:00
from setuptools import setup, find_packages
from pathlib import Path
from distutils.util import convert_path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
2020-10-13 16:53:00 +02:00
version = {}
with open(convert_path('pyerrors/version.py')) as ver_file:
exec(ver_file.read(), version)
2020-10-13 16:53:00 +02:00
setup(name='pyerrors',
version=version['__version__'],
2022-08-01 17:24:21 +01:00
description='Statistical error analysis for Monte Carlo simulations',
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/fjosw/pyerrors",
2022-05-31 12:27:31 +01:00
project_urls= {
'Documentation': 'https://fjosw.github.io/pyerrors/pyerrors.html',
'Bug Tracker': 'https://github.com/fjosw/pyerrors/issues',
'Changelog' : 'https://github.com/fjosw/pyerrors/blob/master/CHANGELOG.md'
2022-05-31 12:27:31 +01:00
},
2020-10-13 16:53:00 +02:00
author='Fabian Joswig',
2021-10-11 14:27:48 +01:00
author_email='fabian.joswig@ed.ac.uk',
license="MIT",
2020-10-13 16:53:00 +02:00
packages=find_packages(),
python_requires='>=3.6.0',
2022-07-20 11:51:06 +01:00
install_requires=['numpy>=1.19', 'autograd>=1.4', 'numdifftools', 'matplotlib>=3.3', 'scipy>=1.5', 'iminuit>=2', 'h5py>=3', 'lxml>=4', 'python-rapidjson>=1', 'pandas>=1.1', 'pysqlite3>=0.4'],
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 :: Physics'
],
2020-10-13 16:53:00 +02:00
)