diff options
author | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2012-06-12 10:30:02 -0400 |
---|---|---|
committer | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2012-06-12 10:30:02 -0400 |
commit | b1c962f124dcadb70c2fa901fb884b9ca1cfb70f (patch) | |
tree | 7c39c579109c1cc1dfe23319d091cbaa79ff10db /setup.py | |
parent | ef355f1c3ca11e28d73984f54b849c42ceaeb14e (diff) | |
download | steuermann-b1c962f124dcadb70c2fa901fb884b9ca1cfb70f.tar.gz |
added call to make in setup.py
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@717 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,5 @@ import distutils.core +import os long_desc = ''' Steuermann is a control system for continuous integration. You write @@ -32,7 +33,10 @@ classifiers = [ 'Topic :: System :: Distributed Computing', ] -# + +os.system('make') + + f=open('steuermann/__init__.py','r') for x in f : if x.startswith('__version__') : @@ -40,7 +44,7 @@ for x in f : break f.close() -# + command_list = [ 'smc', 'smcron', 'steuermann_report.cgi' ] use_usr_bin_env = [ ] dir_set = 'addpath = "%s"\n' |