This repository has been archived by the owner on Jul 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
72 lines (65 loc) · 2.91 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
#!/usr/bin/python
#
# IM - Infrastructure Manager
# Copyright (C) 2011 - GRyCAP - Universitat Politecnica de Valencia
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from IM import __version__ as version
from setuptools import setup
import os
import sys
if not hasattr(sys, 'version_info') or sys.version_info < (2, 6):
raise SystemExit("IM requires Python version 2.6 or above.")
suds_pkg = "suds"
sqlite_pkg = "pysqlite"
if sys.version_info > (3, 0):
suds_pkg = "suds-py3"
sqlite_pkg = ""
if 'bdist_wheel' in sys.argv:
raise RuntimeError("This setup.py does not support wheels")
# Add contextualization dir files
install_path = '/usr/share/im'
datafiles = [(os.path.join(install_path, root), [os.path.join(root, f) for f in files])
for root, dirs, files in os.walk("contextualization")]
# Add other special files
datafiles.append(('/etc/init.d', ['scripts/im']))
datafiles.append(('/etc/systemd/system', ['scripts/im.service']))
datafiles.append(('/etc/im', ['etc/im.cfg']))
datafiles.append(('/etc/im', ['etc/logging.conf']))
# force the im_service.py file to be allways in this path
datafiles.append(('/usr/bin', ['im_service.py']))
try:
long_desc = open('README.md').read()
long_desc_type = 'text/markdown'
except Exception as ex:
print("Error reading README: %s" % ex)
long_desc = "IM is a tool to manage virtual infrastructures on Cloud deployments"
long_desc_type = 'text/plain'
setup(name="IM", version=version,
author='GRyCAP - Universitat Politecnica de Valencia',
author_email='[email protected]',
url='http://www.grycap.upv.es/im',
include_package_data=True,
packages=['IM', 'IM.ansible_utils', 'IM.connectors', 'IM.tosca', 'IM.openid', 'IM.tts'],
scripts=["im_service.py"],
data_files=datafiles,
license="GPL version 3, http://www.gnu.org/licenses/gpl-3.0.txt",
long_description=long_desc,
long_description_content_type=long_desc_type,
description="IM is a tool to manage virtual infrastructures on Cloud deployments",
platforms=["any"],
install_requires=["ansible >= 2.4", "paramiko >= 1.14", "PyYAML", suds_pkg, sqlite_pkg, "cheroot",
"boto >= 2.29", "apache-libcloud >= 2.6.0", "RADL >= 1.1.2", "bottle", "netaddr",
"requests >= 2.19", "scp", "tosca-parser", 'defusedxml', 'urllib3>=1.23']
)