-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·206 lines (175 loc) · 6.13 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#!/usr/bin/python3
# -*- coding: utf-8; -*-
# Authors: Antoine Ginies <aginies@suse.com>
#
# 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/>.
"""
Setup script used for building, testing, and installing modules
based on setuptools.
"""
import codecs
import os
import re
import sys
import subprocess
import time
from glob import glob
import setuptools
from setuptools.command.install import install
from setuptools.command.sdist import sdist
sys.path.insert(0, "src")
def read(fname):
"""
Utility function to read the text file.
"""
path = os.path.join(os.path.dirname(__file__), fname)
with codecs.open(path, encoding="utf-8") as fobj:
return fobj.read()
class PostInstallCommand(install):
"""
Post-installation commands.
"""
#install.run(self)
class GenerateMan():
"""
Generate the man page
"""
# pandoc README.md -f markdown -s -t man -o man/virt-scenario.1
# pandoc DEFAULT_SETTINGS.md -f markdown -s -t man -o man/virt-scenario-settings.1
#cmd = ["pandoc", "README.md", "-f", "markdown", "-s", "-t", "man", "-o", "man/virt-scenario.1",]
cmd = ["echo", "BYPASSING"]
if subprocess.call(cmd) != 0:
raise RuntimeError("Building man pages has failed")
else:
print("Man pages generated successfully")
class CleanCommand(setuptools.Command):
"""
Our custom command to clean out junk files.
"""
description = "Cleans out junk files we don't want in the repo"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
cmd_list = dict(
rm_build_stuff="rm -vrf build dist",
rm_man="rm -vf man/*.1",
rm_src_egg="rm -vrf src/*.egg-info/",
rm_pycache="rm -vrf src/*/__pycache__/; rm -vrf __pycache__",
)
[os.system(cmd) for cmd in cmd_list.values()]
class CheckLint(setuptools.Command):
"""
Check python source files with pylint
"""
description = "Check python source files with pylint"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
"""
Call black and pylint here.
"""
output_format = "colorized" if sys.stdout.isatty() else "text"
cmd = ["pylint", "src", "--output-format="+output_format]
if subprocess.call(cmd) != 0:
print("Pylint done with some recomendations")
# SdistCommand is reused from the libvirt python binding (GPLv2+)
class SdistCommand(sdist):
"""
Custom sdist command, generating a few files.
"""
user_options = sdist.user_options
description = "ChangeLog; build sdist-tarball."
GenerateMan()
def gen_changelog(self):
"""
Generate ChangeLog file out of git log
"""
#cmd = "git log '--pretty=format:%H:%ct %an <%ae>%n%n%s%n%b%n'"
cmd = "git log '--pretty=format:%H:%ct %an %n%n%s%n%b%n'"
fd1 = os.popen(cmd)
fd2 = open("ChangeLog", "w")
for line in fd1:
match = re.match(r"([a-f0-9]+):(\d+)\s(.*)", line)
if match:
timestamp = time.gmtime(int(match.group(2)))
fd2.write(
"%04d-%02d-%02d %s\n"
% (
timestamp.tm_year,
timestamp.tm_mon,
timestamp.tm_mday,
match.group(3),
)
)
else:
if re.match(r"Signed-off-by", line):
continue
fd2.write(" " + line.strip() + "\n")
fd1.close()
fd2.close()
def run(self):
if not os.path.exists("build"):
os.mkdir("build")
if os.path.exists(".git"):
self.gen_changelog()
sdist.run(self)
if os.path.exists(".git"):
files = ["ChangeLog"]
[os.unlink(item) for item in files if os.path.exists(item)]
setuptools.setup(
name="virt-scenario",
version="2.1.2",
author="Antoine Ginies",
author_email="aginies@suse.com",
description="Virt-scenario",
license="GPLv3",
long_description=read("README.md"),
url="https://github.com/aginies/virt-scenario",
keywords="virtualization",
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
entry_points={
"console_scripts": [
"virt-scenario = virtscenario.main:main",
"virt-scenario-launch = virtscenario_launch.main:main",
"virt-select-firmware = virt_select_firmware.main:main",
"virt-scenario-gtk = vsmygtk.main:main",
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2)",
"Programming Language :: Python :: 3",
],
cmdclass={
"install": PostInstallCommand,
"lint": CheckLint,
"sdist": SdistCommand,
"clean": CleanCommand,
},
data_files=[("share/man/man1", ["man/virt-scenario.1"]),
("share/man/man1", ["man/virt-scenario-settings.1"]),
("share/virt-scenario/", glob("src/virt-scenario/*.py")),
(("share/virt-scenario", ["src/virtscenario.yaml"])),
(("share/virt-scenario", ["src/virthosts.yaml"])),
],
extras_require={"dev": ["pylint"]},
install_requires=['PyYAML', 'pyudev', 'libvirt-python', 'psutil'],
)