forked from redhat-performance/opl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
82 lines (79 loc) · 2.67 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
#!/usr/bin/env python3
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="opl-rhcloud-perf-team",
version="0.0.1",
maintainer="Jan Hutar",
maintainer_email="[email protected]",
description="Our performance library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TODO/TODO",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
],
python_requires='>=3.6',
install_requires=[
"Jinja2>=3.0",
"boto3",
"junitparser",
"kafka-python",
"locust",
"numpy",
"psycopg2-binary",
"pyyaml",
"PyYAML",
"requests",
"scipy",
"tabulate",
"deepdiff",
"paho-mqtt",
],
package_data={
"opl": [
"status_data_report.txt",
"cluster_read_example.yaml",
"cluster_read_sat.yaml",
],
"opl.generators": [
"inventory_egress_data.json",
"inventory_egress_template.json.j2",
"inventory_ingress_RHSM_template.json.j2",
"inventory_ingress_puptoo_template.json.j2",
"inventory_ingress_yupana_template.json.j2",
"inventory_ingress_InvGitUtilsPayload_template.json.j2",
"packages_data.json",
"enabled_services.txt",
"installed_services.txt",
"running_processes.txt",
"yum_repos.txt",
],
"opl.investigator": [
"sample_config.yaml",
],
},
entry_points={
"console_scripts": [
"cluster_read.py = opl.cluster_read:main",
"data_investigator.py = opl.data_investigator:main",
"pass_or_fail.py = opl.pass_or_fail:main",
"junit_cli.py = opl.junit_cli:main",
"rp_updater.py = opl.rp_updater:main",
"status_data_diff.py = opl.status_data:main_diff",
"status_data.py = opl.status_data:main",
"status_data_report.py = opl.status_data:main_report",
"status_data_updater.py = opl.status_data_updater:main",
"script-skip-to-end.py = opl.skip_to_end:main",
"script-manage-db.py = opl.manage_db:main",
"script-hbi-populate.py = opl.hbi_utils:populate_main",
"script-hbi-cleanup.py = opl.hbi_utils:cleanup_main",
],
},
)