-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (50 loc) · 2.34 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
from distutils.core import setup
setup(name='haizea',
version='0.9.2',
description='Haizea',
author='University of Chicago',
author_email='[email protected]',
url='http://haizea.cs.uchicago.edu/',
package_dir = {'': 'src'},
packages=['haizea',
'haizea.cli',
'haizea.common',
'haizea.core',
'haizea.core.scheduler',
'haizea.core.scheduler.preparation_schedulers',
'haizea.core.enact',
'haizea.core.frontends',
'haizea.pluggable',
'haizea.pluggable.policies',
'haizea.pluggable.accounting'],
scripts=['bin/haizea', 'bin/haizea-generate-configs', 'bin/haizea-generate-scripts', 'bin/haizea-convert-data',
'bin/haizea-cancel-lease', 'bin/haizea-list-leases', 'bin/haizea-list-hosts', 'bin/haizea-request-lease',
'bin/haizea-show-queue'],
data_files=[('share/haizea/etc', [
'etc/sample_trace.conf',
'etc/sample_trace_barebones.conf',
'etc/sample_opennebula.conf',
'etc/sample_opennebula_barebones.conf',
'etc/sample_multi.conf',
'etc/condor.template',
'etc/run.sh.template']),
('share/haizea/traces', ['traces/sample.lwf',
'traces/sample.images']),
('share/haizea/traces/multi', ['traces/multi/inj1.lwf',
'traces/multi/inj2.lwf',
'traces/multi/withprematureend.lwf',
'traces/multi/withoutprematureend.lwf']),
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: System :: Distributed Computing'
]
)