aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorsienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d>2011-08-30 16:09:41 -0400
committersienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d>2011-08-30 16:09:41 -0400
commitea0bbd187c539b30c6b70a7a220ca1249f3cca41 (patch)
treebfc64ff8328e952e4348440fbe77a85aee88f48e /setup.py
parent0206b3bdab5ca17b8e22806c34330dd58d55e429 (diff)
downloadsteuermann-ea0bbd187c539b30c6b70a7a220ca1249f3cca41.tar.gz
hacked together prototype of steuermann 21.9
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@381 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..42d5f3a
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,27 @@
+import distutils.core
+
+f=open('steuermann/__init__.py','r')
+for x in f :
+ if x.startswith('__version__') :
+ version = x.split("'")[1]
+ break
+f.close()
+
+print version
+
+args = {
+ 'version' : "2.0dev",
+ 'description' : "Steuermann Continuous Integration Control System",
+ 'author' : "Mark Sienkiewicz",
+ 'scripts' : ['scripts/smc'],
+ 'package_dir' : { 'steuermann' : 'steuermann', },
+ 'url' : 'https://svn.stsci.edu/trac/ssb/etal/wiki/Steuermann',
+ 'license': 'BSD',
+ 'packages': [ 'steuermann' ],
+ 'package_data': { 'steuermann' : [ '*.sql', '*.ini', ], }
+}
+
+d = distutils.core.setup(
+ **args
+)
+