forked from saga-project/BigJob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (45 loc) · 2.03 KB
/
setup.py
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
#from distribute_setup import use_setuptools
#use_setuptools()
#from distutils.core import setup
import os
from setuptools import setup
try:
import saga
except:
print "SAGA C++ and SAGA Python Bindings not found. Using Bliss/SAGA."
#sys.exit(1)
fn = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'VERSION')
version = open(fn).read().strip()
setup(name='BigJob',
version=version,
description='SAGA-based Pilot-Job Implementation',
author='Andre Luckow',
author_email='[email protected]',
url='https://github.com/saga-project/BigJob',
classifiers = ['Development Status :: 4 - Beta',
'Programming Language :: Python',
'Environment :: Console',
'Topic :: Utilities',
],
platforms = ('Unix', 'Linux', 'Mac OS'),
packages=['bigjob', 'bigjob_dynamic', 'coordination', 'pilot', 'bigjob.job_plugin', 'pilot.api','pilot.api.compute', 'pilot.api.data', 'pilot.coordination',
'pilot.filemanagement', 'pilot.impl', 'pilot.scheduler', 'examples', 'api', 'bootstrap', 'cli'],
include_package_data=True,
# data files for easy_install
data_files = [('', ['bigjob_agent.conf', 'bigjob_agent.conf']),
('', ['bigjob.conf', 'bigjob.conf']),
('', ['README.md', 'README.md']),
('', ['VERSION', 'VERSION'])],
# data files for pip
package_data = {'': ['*.conf']},
install_requires=['uuid', 'threadpool', 'virtualenv', 'redis==2.2.4', 'bliss', 'google-api-python-client',
'globusonline-transfer-api-client', 'boto>=2.2,<2.3', 'simplejson<2.1', 'pexpect'],
entry_points = {
'console_scripts': [
'test-bigjob = examples.example_local_single:main',
'test-bigjob-dynamic = examples.example_manyjob_local:main',
'pilot-cli = cli.pilot_cli:main'
]
}
)