-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVERSION.txt
70 lines (56 loc) · 1.89 KB
/
VERSION.txt
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
"""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
eval VERSION.py
classifiers = """\
Development Status :: 0 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Zope Public License
Programming Language :: Python
Topic :: Database
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: Microsoft :: Windows
Operating System :: Unix
"""
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='futuregrid.virtual.cluster',
version=version,
description = doclines[0],
classifiers = filter(None, classifiers.split("\n")),
long_description = "\n".join(doclines[2:]),
keywords='FutureGrid OpenStack virtual cluster',
maintainer='Gregor von Laszewski, Xiuwen Yang',
maintainer_email="[email protected]",
author='Gregor von Laszewski, Xiuwen Yang',
author_email='[email protected]',
url='https://github.com/futuregrid/virtual-cluster',
license='Apache 2.0',
package_dir = {'': '.'},
packages = find_packages(exclude=['ez_setup', 'examples', 'tests']),
#include_package_data=True,
#zip_safe=True,
#install_requires=[
# # -*- Extra requirements: -*-
#],
entry_points={
'console_scripts': [
'fg-cluster = futuregrid.virtual.cluster.FGCluster:commandline_parser',
]},
install_requires = [
'setuptools',
'pip'
],
#'fabric',
#'boto',
)