aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 42d5f3a8335931f0648fdfd0ef0300621ec6c3b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
)