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'],