From b1c962f124dcadb70c2fa901fb884b9ca1cfb70f Mon Sep 17 00:00:00 2001 From: cslocum Date: Tue, 12 Jun 2012 14:30:02 +0000 Subject: 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 --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e79d1e8..85c1e02 100644 --- a/setup.py +++ b/setup.py @@ -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' -- cgit