-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
107 lines (93 loc) · 3.65 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
# Copyright 2013-2020 Intranet AG and contributors
#
# Significant portion of this code was taken from the Avocado VT project with
# Author: Lucas Meneghel Rodrigues <lmr@redhat.com>
#
# avocado-i2n is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# avocado-i2n 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with avocado-i2n. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
import glob
from setuptools import setup
VERSION = open('VERSION', 'r').read().strip()
def __is_virtual_env():
return (hasattr(sys, 'real_prefix') or (hasattr(sys, 'base_prefix') and
sys.base_prefix != sys.prefix))
def get_dir(system_path=None, virtual_path=None):
"""
Retrieve VIRTUAL_ENV friendly path
:param system_path: Relative system path
:param virtual_path: Overrides system_path for virtual_env only
:return: VIRTUAL_ENV friendly path
"""
if virtual_path is None:
virtual_path = system_path
if __is_virtual_env():
if virtual_path is None:
virtual_path = []
return os.path.join(*virtual_path)
else:
if system_path is None:
system_path = []
return os.path.join(*(['/'] + system_path))
def get_data_files():
def add_files(level=[]):
installed_location = ['usr', 'share', 'avocado-plugins-i2n']
installed_location += level
level_str = '/'.join(level)
if level_str:
level_str += '/'
file_glob = '%s*' % level_str
files_found = [path for path in glob.glob(file_glob) if
os.path.isfile(path)]
return [((get_dir(installed_location, level)), files_found)]
data_files = []
data_files_dirs = ['tp_folder']
for data_file_dir in data_files_dirs:
for root, dirs, files in os.walk(data_file_dir):
for subdir in dirs:
rt = root.split('/')
rt.append(subdir)
data_files += add_files(rt)
return data_files
setup(name='avocado-framework-plugin-i2n',
version=VERSION,
description='Avocado Intra2net Plugins',
author='Intra2net AG',
author_email='support@intra2net.com',
url='http://github.com/intra2net/avocado-i2n',
packages=['avocado_i2n', 'avocado_i2n.plugins',
'avocado_i2n.cartgraph', 'avocado_i2n.vmnet',
'avocado_i2n.states'],
package_data={'avocado_i2n.vmnet': ['templates/*.template']},
install_requires=['avocado-framework-plugin-vt>=103.0', 'aexpect'],
data_files=get_data_files(),
include_package_data=True,
entry_points={
'avocado.plugins.settings': [
'i2n-settings = avocado_i2n.plugins.i2n_settings:I2NSettings',
],
'avocado.plugins.cli': [
'auto = avocado_i2n.plugins.auto:Auto',
],
'avocado.plugins.cli.cmd': [
'manu = avocado_i2n.plugins.manu:Manu',
],
'avocado.plugins.resolver': [
'parser = avocado_i2n.plugins.loader:TestLoader',
],
'avocado.plugins.suite.runner': [
'traverser = avocado_i2n.plugins.runner:TestRunner',
],
},
)