From 730f2e3807c2a6ed23b25fc5d2a98c2b6c60d89e Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Wed, 8 Aug 2007 23:56:28 +0000 Subject: [PATCH] [project @ add a basic setup.py file] --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 setup.py 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=[], +) -- 2.30.2