Project

General

Profile

root / trunk / setup.py

1
from distutils.core import setup
2

    
3
setup(name='haizea',
4
      version='1.0',
5
      description='Haizea',
6
      author='University of Chicago',
7
      author_email='borja@cs.uchicago.edu',
8
      url='http://haizea.cs.uchicago.edu/',
9
      package_dir = {'': 'src'},
10
      packages=['haizea', 
11
                'haizea.cli',
12
                'haizea.common', 
13
                'haizea.core', 
14
                'haizea.core.scheduler',
15
                'haizea.core.scheduler.preparation_schedulers',
16
                'haizea.core.enact',
17
                'haizea.core.frontends',
18
                'haizea.pluggable',
19
                'haizea.pluggable.policies',
20
                'haizea.pluggable.accounting'],
21
      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
      data_files=[('share/haizea/etc', [
25
                          'etc/sample_trace.conf', 
26
                          'etc/sample_trace_barebones.conf', 
27
                          'etc/sample_opennebula.conf',
28
                          'etc/sample_opennebula_barebones.conf',
29
                          '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
                  ],
39
      classifiers=[
40
          'Development Status :: 5 - Production/Stable',
41
          '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
     )