forked from avocado-framework/avocado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·133 lines (126 loc) · 6.23 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
#!/bin/env python
# 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 2 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 LICENSE for more details.
#
# Copyright: Red Hat Inc. 2013-2014
# Author: Lucas Meneghel Rodrigues <[email protected]>
import os
import sys
# pylint: disable=E0611
from setuptools import setup, find_packages
BASE_PATH = os.path.dirname(__file__)
with open(os.path.join(BASE_PATH, 'VERSION'), 'r') as version_file:
VERSION = version_file.read().strip()
def get_long_description():
with open(os.path.join(BASE_PATH, 'README.rst'), 'r') as readme:
readme_contents = readme.read()
return readme_contents
if __name__ == '__main__':
# Force "make develop" inside the "readthedocs.org" environment
if os.environ.get("READTHEDOCS") and "install" in sys.argv:
os.system("make develop")
setup(name='avocado-framework',
version=VERSION,
description='Avocado Test Framework',
long_description=get_long_description(),
author='Avocado Developers',
author_email='[email protected]',
url='http://avocado-framework.github.io/',
license="GPLv2+",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Natural Language :: English",
"Operating System :: POSIX",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(exclude=('selftests*',)),
include_package_data=True,
scripts=['scripts/avocado'],
entry_points={
'console_scripts': [
'avocado-runner = avocado.core.nrunner:main',
'avocado-runner-noop = avocado.core.nrunner:main',
'avocado-runner-exec = avocado.core.nrunner:main',
'avocado-runner-exec-test = avocado.core.nrunner:main',
'avocado-runner-python-unittest = avocado.core.nrunner:main',
'avocado-runner-avocado-instrumented = avocado.core.nrunner_avocado_instrumented:main',
'avocado-runner-tap = avocado.core.nrunner_tap:main',
'avocado-software-manager = avocado.utils.software_manager:main',
],
'avocado.plugins.cli': [
'wrapper = avocado.plugins.wrapper:Wrapper',
'xunit = avocado.plugins.xunit:XUnitCLI',
'json = avocado.plugins.jsonresult:JSONCLI',
'journal = avocado.plugins.journal:Journal',
'replay = avocado.plugins.replay:Replay',
'tap = avocado.plugins.tap:TAP',
'zip_archive = avocado.plugins.archive:ArchiveCLI',
'json_variants = avocado.plugins.json_variants:JsonVariantsCLI',
],
'avocado.plugins.cli.cmd': [
'config = avocado.plugins.config:Config',
'distro = avocado.plugins.distro:Distro',
'exec-path = avocado.plugins.exec_path:ExecPath',
'variants = avocado.plugins.variants:Variants',
'list = avocado.plugins.list:List',
'run = avocado.plugins.run:Run',
'sysinfo = avocado.plugins.sysinfo:SysInfo',
'plugins = avocado.plugins.plugins:Plugins',
'diff = avocado.plugins.diff:Diff',
'nrun = avocado.plugins.nrun:NRun',
'vmimage = avocado.plugins.vmimage:VMimage',
'nlist = avocado.plugins.nlist:List',
'assets = avocado.plugins.assets:Assets',
],
'avocado.plugins.job.prepost': [
'jobscripts = avocado.plugins.jobscripts:JobScripts',
'teststmpdir = avocado.plugins.teststmpdir:TestsTmpDir',
'human = avocado.plugins.human:HumanJob',
'merge_files = avocado.plugins.expected_files_merge:FilesMerge',
'sysinfo = avocado.plugins.sysinfo:SysInfoJob',
],
'avocado.plugins.result': [
'xunit = avocado.plugins.xunit:XUnitResult',
'json = avocado.plugins.jsonresult:JSONResult',
'zip_archive = avocado.plugins.archive:Archive',
],
'avocado.plugins.result_events': [
'human = avocado.plugins.human:Human',
'tap = avocado.plugins.tap:TAPResult',
'journal = avocado.plugins.journal:JournalResult',
'fetchasset = avocado.plugins.assets:FetchAssetJob',
],
'avocado.plugins.varianter': [
'json_variants = avocado.plugins.json_variants:JsonVariants',
],
'avocado.plugins.resolver': [
'exec-test = avocado.plugins.resolvers:ExecTestResolver',
'python-unittest = avocado.plugins.resolvers:PythonUnittestResolver',
'avocado-instrumented = avocado.plugins.resolvers:AvocadoInstrumentedResolver',
'tap = avocado.plugins.resolvers:TapResolver',
],
'avocado.plugins.runner': [
'runner = avocado.plugins.runner:TestRunner',
'nrunner = avocado.plugins.runner_nrunner:Runner',
],
},
zip_safe=False,
test_suite='selftests',
python_requires='>=3.4',
install_requires=['setuptools'])