2020-10-13 16:53:00 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(name='pyerrors',
|
2022-03-03 12:06:21 +00:00
|
|
|
version='2.0.0-rc.2',
|
2020-10-13 16:53:00 +02:00
|
|
|
description='Error analysis for lattice QCD',
|
|
|
|
author='Fabian Joswig',
|
2021-10-11 14:27:48 +01:00
|
|
|
author_email='fabian.joswig@ed.ac.uk',
|
2020-10-13 16:53:00 +02:00
|
|
|
packages=find_packages(),
|
2022-01-11 16:41:28 +01:00
|
|
|
python_requires='>=3.6.0',
|
2021-12-10 14:14:51 +00:00
|
|
|
install_requires=['numpy>=1.16', 'autograd @ git+https://github.com/HIPS/autograd.git', 'numdifftools', 'matplotlib>=3.3', 'scipy', 'iminuit>=2', 'h5py']
|
2020-10-13 16:53:00 +02:00
|
|
|
)
|