From aac9ff5b6836af2b0642cf77597c2cb6e94d7021 Mon Sep 17 00:00:00 2001 From: rnmitchell <57150382+rnmitchell@users.noreply.github.com> Date: Wed, 21 Oct 2020 09:48:52 -0400 Subject: [PATCH] updated MANIFEST and setup.py to bundle files correctly (#36) Co-authored-by: Rebecca Mitchell --- MANIFEST.in | 1 + setup.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index c98508f3..9e0771d2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,3 +3,4 @@ include lusSTR/_version.py include lusSTR/str_markers.json include lusSTR/tests/data/* include lusSTR/tests/data/STRait_Razor_test_output/* +include lusSTR/tests/data/UAS_bulk_input/* diff --git a/setup.py b/setup.py index 09b07472..fd532e96 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,10 @@ description=desc, packages=['lusSTR', 'lusSTR.tests'], package_data={ - 'lusSTR': ['lusSTR/str_markers.json', 'lusSTR/tests/data/*', 'lusSTR/tests/data/STRait_Razor_test_output/*'] + 'lusSTR': [ + 'lusSTR/str_markers.json', 'lusSTR/tests/data/*', 'lusSTR/tests/data/STRait_Razor_test_output/*', + 'lusSTR/tests/data/UAS_bulk_input/*' + ] }, include_package_data=True, install_requires=['pandas>=1.0', 'xlrd>=1.0'],