-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.03 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.03 KB
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
28
29
30
31
32
import os
from setuptools import setup
from distutils import sysconfig
site_packages_path = sysconfig.get_python_lib(prefix='./')
setup(
name='pbs-python',
packages=['pbs'],
version='4.4.2.1',
author='Radik Fattakhov',
author_email='radikft@gmail.com',
description='openpbs/torque python interface',
keywords=['pbs'],
data_files=[
(site_packages_path, ['pbs.pth']),
(os.path.join(site_packages_path, 'pbs'), ['_pbs.so'])
],
url='http://github.com/radik/pbs-python',
license='LGPLv3',
classifiers=[
'Programming Language :: Python :: 2.7',
'Operating System :: POSIX :: Other',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)'
],
long_description='''\
This is pip-package of pbs_python 4.4.1 (http://oss.trac.surfsara.nl/pbs_python)
by Bas van der Vlies (bas.vandervlies@surfsara.nl).
Native extensions from this package compiled on CentOS 7 with PBS Torque 5
installed on it and probably not compatible with other versions.
'''
)