forked from futuregrid/deprecated-teefaa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
78 lines (65 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
"""FutureGrid: Creating a SLURM virtual Cluster via euca2tools
This project creates a virtual cluster with the help of euca
tools. The cluster uses SLURM as resource manager. A simple MPI
program is included to test the functionality. of teh virtual cluster.
"""
from setuptools import setup, find_packages
import sys, os
version = '0.1'
# due to a bug we are not including VERION.py yet
# execfile('VERSION.py)
classifiers = """\
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Topic :: Database
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: POSIX :: Linux
Programming Language :: Python :: 2.7
Operating System :: MacOS :: MacOS X
Topic :: Scientific/Engineering
Topic :: System :: Clustering
Topic :: System :: Distributed Computing
"""
if sys.version_info < (2, 7):
_setup = setup
def setup(**kwargs):
if kwargs.has_key("classifiers"):
del kwargs["classifiers"]
_setup(**kwargs)
doclines = __doc__.split("\n")
setup(
name='teefaa',
version=version,
description = doclines[0],
classifiers = filter(None, classifiers.split("\n")),
long_description = "\n".join(doclines[2:]),
keywords='FutureGrid teefa',
maintainer='Koji Tanaka, Javier Diaz, Gregor von Laszewski',
maintainer_email="[email protected]",
author='Koji Tanaka',
author_email='[email protected]',
url='https://github.com/futuregrid/teefaa',
license='Apache 2.0',
package_dir = {'': 'src'},
packages = find_packages(exclude=['ez_setup', 'examples', 'tests']),
#include_package_data=True,
#zip_safe=True,
#install_requires=[
# # -*- Extra requirements: -*-
#],
#entry_points={
# 'console_scripts': [
# 'fg-teefa = futuregrid.move.teefaa.FGteefa:main',
# ]},
install_requires = [
'setuptools',
'pip',
'fabric',
'boto',
],
)