source: trunk/setup.py.in @ 241

Last change on this file since 241 was 241, checked in by bas, 14 years ago

Update the LICENSE file

File size: 1.5 KB
Line 
1#!/usr/bin/env python
2#
3# $Id: setup.py 434 2005-11-04 15:02:07Z bas $
4#
5# set ts=4
6#
7
8import sys
9import os
10
11from distutils.core import setup, Extension
12
13# Strip off the -L it is also added by the python setup tools
14#
15PBS_LIB_COMPILE_LINE='@pbs_library_compile_line@'
16PBS_LIB_DIR='@pbs_library_dir@'
17
18if not PBS_LIB_DIR:
19        print 'Please specify where the PBS libraries are!!'
20        print 'edit setup.py and fill in the PBS_LIB_DIR variable'
21        sys.exit(1)
22
23LIBS = ['torque']
24
25### Make symlinks to right torque version
26#
27VERSION = "@pbs_version@"
28tmp = VERSION.split('.')
29
30major_version = int(tmp[0])
31minor_version = int(tmp[1])
32build_version = int(tmp[2])
33
34os.chdir('src')
35
36## Always unlink previous links
37#
38try:
39        os.unlink('pbs.py')
40        os.unlink('pbs_wrap.c')
41except OSError:
42        pass
43
44if major_version  >= 2 and minor_version >= 4 and build_version >= 7:
45        os.symlink('pbs_wrap_2.4.c', 'pbs_wrap.c')
46        os.symlink('pbs_2.4.py', 'pbs.py')
47        TORQUE_VERSION='TORQUE_2_4'
48else:
49        os.symlink('pbs_wrap_2.1.c', 'pbs_wrap.c')
50        os.symlink('pbs_2.1.py', 'pbs.py')
51        TORQUE_VERSION='TORQUE_OLD'
52
53os.chdir('..')
54
55setup ( 
56        name = 'pbs_python',
57        version = '4.1.3',
58        description = 'openpbs/torque python interface',
59        license = 'LGPLV3',
60        author = 'Bas van der Vlies',
61        author_email = 'basv@sara.nl',
62        url = 'http://subtrac.sara.nl/oss/pbs_python',
63
64
65        extra_path = 'pbs',
66                package_dir = { '' : 'src' }, 
67                py_modules = [ 'pbs', 'PBSQuery' ], 
68
69        ext_modules = [ 
70                Extension( '_pbs', ['src/pbs_wrap.c'],
71                library_dirs = [ PBS_LIB_DIR ],
72                define_macros =  [ (TORQUE_VERSION, None) ],
73                libraries = LIBS,
74                ) 
75        ]
76)
Note: See TracBrowser for help on using the repository browser.