Project

General

Profile

root / trunk / setup.py

1 382 borja
from distutils.core import setup
2
3
setup(name='haizea',
4 705 borja
      version='1.0',
5 382 borja
      description='Haizea',
6 389 borja
      author='University of Chicago',
7 382 borja
      author_email='borja@cs.uchicago.edu',
8
      url='http://haizea.cs.uchicago.edu/',
9
      package_dir = {'': 'src'},
10
      packages=['haizea',
11 452 borja
                'haizea.cli',
12 382 borja
                'haizea.common',
13 637 borja
                'haizea.core',
14
                'haizea.core.scheduler',
15
                'haizea.core.scheduler.preparation_schedulers',
16
                'haizea.core.enact',
17
                'haizea.core.frontends',
18 672 borja
                'haizea.pluggable',
19
                'haizea.pluggable.policies',
20
                'haizea.pluggable.accounting'],
21 515 borja
      scripts=['bin/haizea', 'bin/haizea-generate-configs', 'bin/haizea-generate-scripts', 'bin/haizea-convert-data',
22
               'bin/haizea-cancel-lease', 'bin/haizea-list-leases', 'bin/haizea-list-hosts', 'bin/haizea-request-lease',
23
               'bin/haizea-show-queue'],
24 672 borja
      data_files=[('share/haizea/etc', [
25
                          'etc/sample_trace.conf',
26
                          'etc/sample_trace_barebones.conf',
27 382 borja
                          'etc/sample_opennebula.conf',
28 672 borja
                          'etc/sample_opennebula_barebones.conf',
29 401 borja
                          'etc/sample_multi.conf',
30
                          'etc/condor.template',
31
                          'etc/run.sh.template']),
32
                  ('share/haizea/traces', ['traces/sample.lwf',
33
                             'traces/sample.images']),
34
                  ('share/haizea/traces/multi', ['traces/multi/inj1.lwf',
35
                                                 'traces/multi/inj2.lwf',
36
                                                 'traces/multi/withprematureend.lwf',
37
                                                 'traces/multi/withoutprematureend.lwf']),
38 382 borja
                  ],
39
      classifiers=[
40 705 borja
          'Development Status :: 5 - Production/Stable',
41 382 borja
          'Environment :: Console',
42
          'Environment :: No Input/Output (Daemon)',
43
          'Intended Audience :: Developers',
44
          'Intended Audience :: System Administrators',
45
          'License :: OSI Approved :: Apache Software License',
46
          'Operating System :: POSIX',
47
          'Programming Language :: Python',
48
          'Topic :: Scientific/Engineering',
49
          'Topic :: System :: Distributed Computing'
50
          ]
51
     )