X-Git-Url: http://woldlab.caltech.edu/gitweb/?a=blobdiff_plain;f=setup.py;h=5bbd5e9236b81f7bb57bb9896405d5de9215562e;hb=630705a8fe7ae64edbc8452036a125513256f078;hp=0c1a203d01999d2c8af669aae16642d8012ca768;hpb=93ab150c96e1d975b07ad6436e59e6f126ecf4ca;p=htsworkflow.git diff --git a/setup.py b/setup.py index 0c1a203..5bbd5e9 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages from version import get_git_version setup( @@ -7,19 +7,7 @@ setup( description="Utilities to help manage high-through-put sequencing", author="Diane Trout, Brandon King", author_email="diane@caltech.edu", - packages=["htsworkflow", - "htsworkflow.automation", - "htsworkflow.pipelines", - "htsworkflow.util", - # django site - "htsworkflow.frontend", - "htsworkflow.frontend.analysis", - "htsworkflow.frontend.eland_config", - "htsworkflow.frontend.experiments", - "htsworkflow.frontend.inventory", - "htsworkflow.frontend.reports", - "htsworkflow.frontend.samples", - ], + packages=find_packages(), scripts=[ "scripts/htsw-copier", "scripts/htsw-eland2bed", @@ -36,4 +24,7 @@ setup( "scripts/htsw-update-archive", "scripts/htsw-validate", ], + package_data = { + '': ['*.turtle'] + }, )