aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
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
+)
+