forked from kytos/pathfinder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
311 lines (243 loc) · 9.03 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
"""Setup script.
Run "python3 setup.py --help-commands" to list all available commands and their
descriptions.
"""
import os
import shutil
import sys
from abc import abstractmethod
from pathlib import Path
from subprocess import CalledProcessError, call, check_call
from setuptools import Command, setup
from setuptools.command.develop import develop
from setuptools.command.egg_info import egg_info
from setuptools.command.install import install
if 'bdist_wheel' in sys.argv:
raise RuntimeError("This setup.py does not support wheels")
# Paths setup with virtualenv detection
BASE_ENV = Path(os.environ.get('VIRTUAL_ENV', '/'))
NAPP_NAME = 'pathfinder'
NAPP_VERSION = '2.2.3'
# Kytos var folder
VAR_PATH = BASE_ENV / 'var' / 'lib' / 'kytos'
# Path for enabled NApps
ENABLED_PATH = VAR_PATH / 'napps'
# Path to install NApps
INSTALLED_PATH = VAR_PATH / 'napps' / '.installed'
CURRENT_DIR = Path('.').resolve()
# NApps enabled by default
CORE_NAPPS = ['topology']
# def read_version_from_json():
# """Read the NApp version from NApp kytos.json file."""
# file = Path('kytos.json')
# metadata = json.loads(file.read_text())
# return metadata['version']
class SimpleCommand(Command):
"""Make Command implementation simpler."""
user_options = []
@abstractmethod
def run(self):
"""Run when command is invoked.
Use *call* instead of *check_call* to ignore failures.
"""
def initialize_options(self):
"""Set default values for options."""
def finalize_options(self):
"""Post-process options."""
# pylint: disable=attribute-defined-outside-init, abstract-method
class TestCommand(Command):
"""Test tags decorators."""
user_options = [
('size=', None, 'Specify the size of tests to be executed.'),
('type=', None, 'Specify the type of tests to be executed.'),
]
sizes = ('small', 'medium', 'large', 'all')
types = ('unit', 'integration', 'e2e')
def get_args(self):
"""Return args to be used in test command."""
return '--size %s --type %s' % (self.size, self.type)
def initialize_options(self):
"""Set default size and type args."""
self.size = 'all'
self.type = 'unit'
def finalize_options(self):
"""Post-process."""
try:
assert self.size in self.sizes, ('ERROR: Invalid size:'
f':{self.size}')
assert self.type in self.types, ('ERROR: Invalid type:'
f':{self.type}')
except AssertionError as exc:
print(exc)
sys.exit(-1)
class Cleaner(SimpleCommand):
"""Custom clean command to tidy up the project root."""
description = 'clean build, dist, pyc and egg from package and docs'
def run(self):
"""Clean build, dist, pyc and egg from package and docs."""
call('rm -vrf ./build ./dist ./*.egg-info', shell=True)
call('find . -name __pycache__ -type d | xargs rm -rf', shell=True)
call('make -C docs/ clean', shell=True)
class Test(TestCommand):
"""Run all tests."""
description = 'run tests and display results'
def get_args(self):
"""Return args to be used in test command."""
markers = self.size
if markers == "small":
markers = 'not medium and not large'
size_args = "" if self.size == "all" else "-m '%s'" % markers
return '--addopts="tests/%s %s"' % (self.type, size_args)
def run(self):
"""Run tests."""
cmd = 'python setup.py pytest %s' % self.get_args()
try:
check_call(cmd, shell=True)
except CalledProcessError as exc:
print(exc)
class TestCoverage(Test):
"""Display test coverage."""
description = 'run tests and display code coverage'
def run(self):
"""Run tests quietly and display coverage report."""
cmd = 'coverage3 run setup.py pytest %s' % self.get_args()
cmd += '&& coverage3 report'
try:
check_call(cmd, shell=True)
except CalledProcessError as exc:
print(exc)
class Linter(SimpleCommand):
"""Code linters."""
description = 'lint Python source code'
def run(self):
"""Run Yala."""
print('Yala is running. It may take several seconds...')
try:
check_call('yala *.py tests', shell=True)
print('No linter error found.')
except RuntimeError as error:
print('Linter check failed. Fix the error(s) above and try again.')
print(error)
exit(-1)
class CITest(TestCommand):
"""Run all CI tests."""
description = 'run all CI tests: unit and doc tests, linter'
def run(self):
"""Run unit tests with coverage, doc tests and linter."""
coverage_cmd = 'python3.6 setup.py coverage %s' % self.get_args()
lint_cmd = 'python3.6 setup.py lint'
cmd = '%s && %s' % (coverage_cmd, lint_cmd)
check_call(cmd, shell=True)
class KytosInstall:
"""Common code for all install types."""
@staticmethod
def enable_core_napps():
"""Enable a NAPP by creating a symlink."""
(ENABLED_PATH / 'kytos').mkdir(parents=True, exist_ok=True)
for napp in CORE_NAPPS:
napp_path = Path('kytos', napp)
src = ENABLED_PATH / napp_path
dst = INSTALLED_PATH / napp_path
symlink_if_different(src, dst)
class InstallMode(install):
"""Create files in var/lib/kytos."""
description = 'To install NApps, use kytos-utils. Devs, see "develop".'
def run(self):
"""Direct users to use kytos-utils to install NApps."""
print(self.description)
class EggInfo(egg_info):
"""Prepare files to be packed."""
def run(self):
"""Build css."""
self._install_deps_wheels()
super().run()
@staticmethod
def _install_deps_wheels():
"""Python wheels are much faster (no compiling)."""
print('Installing dependencies...')
check_call([sys.executable, '-m', 'pip', 'install', '-r',
'requirements/run.in'])
class DevelopMode(develop):
"""Recommended setup for kytos-napps developers.
Instead of copying the files to the expected directories, a symlink is
created on the system aiming the current source code.
"""
description = 'Install NApps in development mode'
def run(self):
"""Install the package in a developer mode."""
super().run()
if self.uninstall:
shutil.rmtree(str(ENABLED_PATH), ignore_errors=True)
else:
self._create_folder_symlinks()
# self._create_file_symlinks()
KytosInstall.enable_core_napps()
@staticmethod
def _create_folder_symlinks():
"""Symlink to all Kytos NApps folders.
./napps/kytos/napp_name will generate a link in
var/lib/kytos/napps/.installed/kytos/napp_name.
"""
links = INSTALLED_PATH / 'kytos'
links.mkdir(parents=True, exist_ok=True)
code = CURRENT_DIR
src = links / NAPP_NAME
symlink_if_different(src, code)
(ENABLED_PATH / 'kytos').mkdir(parents=True, exist_ok=True)
dst = ENABLED_PATH / Path('kytos', NAPP_NAME)
symlink_if_different(dst, src)
# @staticmethod
# def _create_file_symlinks():
# """Symlink to required files."""
# src = ENABLED_PATH / '__init__.py'
# dst = CURRENT_DIR / 'napps' / '__init__.py'
# symlink_if_different(src, dst)
def symlink_if_different(path, target):
"""Force symlink creation if it points anywhere else."""
# print(f"symlinking {path} to target: {target}...", end=" ")
if not path.exists():
# print(f"path doesn't exist. linking...")
path.symlink_to(target)
elif not path.samefile(target):
# print(f"path exists, but is different. removing and linking...")
# Exists but points to a different file, so let's replace it
path.unlink()
path.symlink_to(target)
setup(name=f'kytos_{NAPP_NAME}',
version=NAPP_VERSION,
description='Core NApps developed by Kytos Team',
url='http://github.com/kytos/{NAPP_NAME}',
author='Kytos Team',
author_email='[email protected]',
license='MIT',
install_requires=[
'kytos>=2017.2b1',
'networkx'
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
extras_require={
'dev': [
'coverage',
'pip-tools',
'yala',
'tox',
],
},
cmdclass={
'clean': Cleaner,
'ci': CITest,
'coverage': TestCoverage,
'develop': DevelopMode,
'install': InstallMode,
'lint': Linter,
'egg_info': EggInfo,
'test': Test,
},
zip_safe=False,
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Networking',
])