pyerrors/setup.py
Fabian Joswig 1a5c3c8c29 refactor: switched to autograd version from github which resolves the
deprecation warnings stemming from numpy
2021-12-10 14:14:51 +00:00

13 lines
473 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='pyerrors',
version='2.0.0',
description='Error analysis for lattice QCD',
author='Fabian Joswig',
author_email='fabian.joswig@ed.ac.uk',
packages=find_packages(),
python_requires='>=3.6.0',
install_requires=['numpy>=1.16', 'autograd @ git+https://github.com/HIPS/autograd.git', 'numdifftools', 'matplotlib>=3.3', 'scipy', 'iminuit>=2', 'h5py']
)