Skip to content

Commit

Permalink
Make sure all files are bundled correctly (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
standage authored Apr 2, 2020
1 parent 813dbd7 commit 5e7ea3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include versioneer.py
include lusSTR/_version.py
lusSTR/str_markers.json
include lusSTR/str_markers.json
include lusSTR/tests/data/*
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/*']
},
Expand Down

0 comments on commit 5e7ea3d

Please sign in to comment.