7edc59784f8095dfe7ecacf69950293fd3ce9254
vsmalladi
  Wed Sep 21 11:01:50 2011 -0700
Added my first pass of using distutils for deployment of python libraries.
diff --git python/lib/setup.py python/lib/setup.py
new file mode 100755
index 0000000..8c1ca5d
--- /dev/null
+++ python/lib/setup.py
@@ -0,0 +1,10 @@
+from distutils.core import setup
+
+setup(
+		Name='ucscgenomics',
+		Version='0.1.0',
+		Author='Morgan Maddren',
+		packages=['ucscgenomics'],
+		Description='UCSC Genomics parses fileformats specific to use in the Browser source tree. ',
+	)
+