From: Diane Trout Date: Wed, 8 Aug 2007 23:56:28 +0000 (+0000) Subject: [project @ add a basic setup.py file] X-Git-Tag: 0.1.0~93 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=730f2e3807c2a6ed23b25fc5d2a98c2b6c60d89e [project @ add a basic setup.py file] --- diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8761e55 --- /dev/null +++ b/setup.py @@ -0,0 +1,10 @@ +from setuptools import setup + +setup( + name="uashelper", + description="some bots and other utilities to help deal with data from an illumina sequencer", + author="Diane Trout", + author_email="diane@caltech.edu", + packages="uashelper", + scripts=[], +)