-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (91 loc) · 4.38 KB
/
pyproject.toml
File metadata and controls
95 lines (91 loc) · 4.38 KB
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "benchmark-runner"
version = "1.0.1002"
description = "Benchmark Runner Tool"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{ name = "Red Hat", email = "ebattat@redhat.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"attrs==21.4.0",
"azure==4.0.0",
"boto3==1.41.0",
"botocore==1.41.0",
"cryptography==46.0.7",
"elasticsearch==7.16.1",
"elasticsearch-dsl==7.4.0",
"google-auth==2.30.0",
"google-auth-httplib2==0.2.0",
"google-auth-oauthlib==1.2.0",
"google-api-python-client==2.135.0",
"ipywidgets==8.0.6",
"jinja2==3.1.6",
"myst-parser==1.0.0",
"openshift-client==1.0.17",
"prometheus-api-client==0.5.1",
"pandas",
"paramiko==3.4.0",
"PyGitHub==1.55",
"PyYAML==6.0.1",
"setuptools",
"sphinx==5.0.0",
"sphinx-rtd-theme==1.0.0",
"tenacity==8.0.1",
"tqdm==4.66.3",
"typeguard==2.12.1",
"typing==3.7.4.3",
]
[project.urls]
Homepage = "https://github.com/redhat-performance/benchmark-runner"
[tool.setuptools.packages.find]
include = ["benchmark_runner", "benchmark_runner.*"]
[tool.setuptools.package-data]
"benchmark_runner.common.template_operations.templates" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.hammerdb" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.hammerdb.internal_data" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.stressng" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.stressng.internal_data" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.sysbench" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.sysbench.internal_data" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.uperf" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.uperf.internal_data" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.scale" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.vdbench" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.vdbench.internal_data" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.fio" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.fio.internal_data" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.bootstorm" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.bootstorm.internal_data" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.windows" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.windows.internal_data" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.winmssql" = ["*.yaml"]
"benchmark_runner.common.template_operations.templates.winmssql.internal_data" = ["*.yaml", "*.ps1", "*.sql", "*.tcl"]
"benchmark_runner.common.template_operations.templates.winmssql.windows_benchmark_runner" = ["*"]
"benchmark_runner.common.ocp_resources.lso.template" = ["*.sh", "*.yaml"]
"benchmark_runner.common.ocp_resources.odf.template" = ["*.sh", "*.yaml"]
"benchmark_runner.common.ocp_resources.infra.template" = ["*.sh", "*.yaml"]
"benchmark_runner.common.ocp_resources.kata.template" = ["*.sh", "*.yaml"]
"benchmark_runner.common.ocp_resources.cnv.template" = ["*.sh", "*.yaml"]
"benchmark_runner.common.ocp_resources.custom.template" = ["*.sh", "*.yaml"]
"benchmark_runner.common.ocp_resources.nhc_far.template" = ["*.sh", "*.yaml"]
"benchmark_runner.common.assisted_installer.jetlag" = ["run_jetlag.sh"]
"benchmark_runner.common.prometheus" = ["*.yaml"]
"benchmark_runner.jupyterlab.templates.analyze_perfci_cluster" = ["*.ipynb"]
"benchmark_runner.jupyterlab.templates.analyze_prometheus_logs" = ["*.ipynb"]
"benchmark_runner.jupyterlab.templates.analyze_workloads.analyze_hammerdb_logs" = ["*.ipynb"]
"benchmark_runner.jupyterlab.templates.analyze_workloads.analyze_uperf_logs" = ["*.ipynb"]
"benchmark_runner.jupyterlab.templates.analyze_workloads.analyze_vdbench_logs" = ["*.ipynb"]
"benchmark_runner.jupyterlab.templates.elasticsearch_operations" = ["*.ipynb"]