From 868325b9fbceab617cf3d9e21633dbf5595bed24 Mon Sep 17 00:00:00 2001 From: Sarthak Pati <sarthak.pati@pennmedicine.upenn.edu> Date: Sun, 13 Feb 2022 22:10:35 -0500 Subject: [PATCH 1/2] ensuring `requirements.txt` get picked up during sdist creation --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1a20444a..b741e1d2 100644 --- a/setup.py +++ b/setup.py @@ -53,5 +53,5 @@ license=LICENSE, setup_requires=["pytest-runner"], tests_require=["pytest"], - data_files=[("/configs", ["configs/default.yaml"])], + data_files=["requirements.txt", ("/configs", ["configs/default.yaml"])], ) From d9ccfc236564c60f378e252b1417f708f3e20477 Mon Sep 17 00:00:00 2001 From: Sarthak Pati <sarthak.pati@pennmedicine.upenn.edu> Date: Sun, 13 Feb 2022 22:11:55 -0500 Subject: [PATCH 2/2] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b741e1d2..2da0a8bf 100644 --- a/setup.py +++ b/setup.py @@ -53,5 +53,5 @@ license=LICENSE, setup_requires=["pytest-runner"], tests_require=["pytest"], - data_files=["requirements.txt", ("/configs", ["configs/default.yaml"])], + data_files=[("requirements.txt", "/configs", ["configs/default.yaml"])], )