-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (46 loc) · 1.42 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
import glob
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README')).read()
DATA = [
('etc', [f for f in glob.glob(os.path.join('etc', '*'))]),
('templates', [f for f in glob.glob(os.path.join('templates', '*'))]),
('res', [f for f in glob.glob(os.path.join('res', '*'))])
]
dependencies = [
'jinja2',
'six',
'python-subunit',
'testtools'
]
entry_points = {
"console_scripts":
"tparser = tempest_parser.tparser:tempest_cli_parser_main"
}
setup(
name="TempestParser",
version="0.2.81",
author="Alex Savatieiev",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.9"
],
keywords="QA, tempest, openstack, html, report",
entry_points=entry_points,
url="https://github.com/savex/tempest-parser",
packages=find_packages(),
include_package_data=True,
package_data={
'': ['*.conf', '*.list', '*.html']
},
zip_safe=False,
install_requires=dependencies,
data_files=DATA,
license="Apache Licence, version 2",
description="Tempest Parser tool used to generate trending reports "
"out of various result formats: pytest's CLI, Rally's XML,"
"JSON, jUnit XML (with v4 schema support), CSV (two types).",
long_description=README
)