forked from novel/lc-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·99 lines (78 loc) · 3.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python
import os
import shutil
import subprocess
import sys
from distutils.core import setup
from distutils.command.install import install
from distutils.command.sdist import sdist
def abspath(path):
"""A method to determine absolute path
for a relative path inside project's directory."""
return os.path.abspath(
os.path.join(
os.path.dirname(__file__), path))
PROVIDER_TOOLS_DIR = abspath("./provider_specific")
PROVIDER_TOOLS = os.listdir(PROVIDER_TOOLS_DIR)
scripts_to_install = ["lc-drivers-list",
"lc-image-list",
"lc-node-add",
"lc-node-do",
"lc-node-list",
"lc-sizes-list",
"lc-ip-group-do",
"lc-ip-group-list"]
class lc_install(install):
user_options = install.user_options
user_options.extend([('providertools=', None, ('List of providers for which '
'additional tools should be included.\nSupported values: %s') % \
' '.join(PROVIDER_TOOLS))])
def initialize_options(self):
self.providertools = ' '.join(PROVIDER_TOOLS)
install.initialize_options(self)
def run(self):
global scripts_to_install
for prov_script_dir in self.providertools.split():
try:
scripts_to_install += [os.path.join("./provider_specific",
prov_script_dir, path) for path in
os.listdir(os.path.join(PROVIDER_TOOLS_DIR, prov_script_dir))]
except OSError, err:
sys.stdout.write("Problem accessing scripts for provider '%s': %s\n" % \
(prov_script_dir, str(err)))
sys.exit(1)
install.run(self)
man_dir = abspath("./man/")
output = subprocess.Popen([os.path.join(man_dir, "install.sh")],
stdout=subprocess.PIPE,
cwd=man_dir,
env=dict({"PREFIX": self.prefix}, **os.environ)).communicate()[0]
print output
class lc_sdist(sdist):
"""We substitute default 'sdist' command to generate README file:
README.md -> README (as github only shows *.md files as Markdown)
"""
def run(self):
sys.stdout.write("README.md --> README\n")
shutil.copyfile("README.md", "README")
sdist.run(self)
sys.stdout.write("Cleaning up README\n")
os.remove("README")
setup(name="lctools",
version="0.1.4",
description="CLI tools for managing clouds, based on libcloud",
author="Roman Bogorodskiy",
author_email="bogorodskiy@gmail.com",
url="http://github.com/novel/lc-tools",
packages=["lctools"],
scripts=scripts_to_install,
license='Apache License (2.0)',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: System'],
cmdclass={"install": lc_install, "sdist": lc_sdist},)