From bde7db4a4bef6cd383e1530c066f1ce872b2f567 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 22 Nov 2022 14:42:24 +0000 Subject: [PATCH] build: test dependencies added as extra to setup.py. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index a06ceca9..3aa4d889 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,7 @@ setup(name='pyerrors', packages=find_packages(), python_requires='>=3.7.0', install_requires=['numpy>=1.19', 'autograd>=1.5', 'numdifftools>=0.9.41', 'matplotlib>=3.5', 'scipy>=1.7', 'iminuit>=2.17', 'h5py>=3.7', 'lxml>=4.9', 'python-rapidjson>=1.9', 'pandas>=1.1'], + extras_require={'test': ['pytest', 'pytest-cov', 'pytest-benchmark']}, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Science/Research',