From 0d7d2d801d041219886d545a6da72f566862a1a1 Mon Sep 17 00:00:00 2001 From: Sergei Kliavinek Date: Mon, 21 Aug 2023 17:23:01 -0700 Subject: [PATCH] make perturbopy compatible with pytest7.4 --- MANIFEST.in | 2 ++ setup.py | 1 + src/perturbopy/setup.cfg | 1 + 3 files changed, 4 insertions(+) create mode 100644 MANIFEST.in create mode 100644 src/perturbopy/setup.cfg diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a7447ce --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include src/perturbopy *.cfg + diff --git a/setup.py b/setup.py index 8f1a360..99d8151 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,7 @@ name='perturbopy', version='0.1.0', python_requires='>=3.7.12', + include_package_data=True, install_requires=[ 'numpy>=1.21.4', 'pytest', diff --git a/src/perturbopy/setup.cfg b/src/perturbopy/setup.cfg new file mode 100644 index 0000000..8ffb8ad --- /dev/null +++ b/src/perturbopy/setup.cfg @@ -0,0 +1 @@ +[tool:pytest]