mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 14:50:25 +01:00
build: long description added to setup.py, autograd dependency changed
to pypi version.
This commit is contained in:
parent
f907c62b41
commit
477573593c
1 changed files with 6 additions and 1 deletions
7
setup.py
7
setup.py
|
@ -1,13 +1,18 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
from pathlib import Path
|
||||
this_directory = Path(__file__).parent
|
||||
long_description = (this_directory / "README.md").read_text()
|
||||
|
||||
setup(name='pyerrors',
|
||||
version='2.0.0',
|
||||
description='Error analysis for lattice QCD',
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
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']
|
||||
install_requires=['numpy>=1.16', 'autograd>=1.4', 'numdifftools', 'matplotlib>=3.3', 'scipy', 'iminuit>=2', 'h5py']
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue