add setuptools setup.py scripts for the modules I need to be able to use
[htsworkflow.git] / htswcommon / setup.py
1 from setuptools import setup
2
3 setup(
4   name="hts-workflow common",
5   description="Shared components used by the other HTS-Workflow packages",
6   packages=["htswcommon", 
7             "htswcommon.data_transfer",
8             "htswcommon.util",
9             "htswcommon.messaging",
10              ],
11   scripts=[
12         ],
13 )