[project @ add a basic setup.py file]
authorDiane Trout <diane@caltech.edu>
Wed, 8 Aug 2007 23:56:28 +0000 (23:56 +0000)
committerDiane Trout <diane@caltech.edu>
Wed, 8 Aug 2007 23:56:28 +0000 (23:56 +0000)
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
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=[],
+)