From 5e7ea3dc96eccca5da96ddd7048b551910b4033b Mon Sep 17 00:00:00 2001 From: Daniel Standage Date: Thu, 2 Apr 2020 13:49:21 -0400 Subject: [PATCH] Make sure all files are bundled correctly (#13) --- MANIFEST.in | 3 ++- setup.py | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 330aebe2..fce7694f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ include versioneer.py include lusSTR/_version.py -lusSTR/str_markers.json +include lusSTR/str_markers.json +include lusSTR/tests/data/* diff --git a/setup.py b/setup.py index 3a4de6f6..2792df0d 100755 --- a/setup.py +++ b/setup.py @@ -10,12 +10,13 @@ from setuptools import setup import versioneer +desc = 'Tool for converting NGS sequence data of forensic STR loci to various annotation styles' setup( name='lusSTR', version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), - description='Convert ForenSeq sequence strings to a compact representation', - packages=['lusSTR'], + description=desc, + packages=['lusSTR', 'lusSTR.tests'], package_data={ 'lusSTR': ['lusSTR/str_markers.json', 'lusSTR/tests/data/*'] },