-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
214 lines (204 loc) · 10.3 KB
/
pyproject.toml
File metadata and controls
214 lines (204 loc) · 10.3 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
[tool.poetry]
name = "gluetool-modules-framework"
version = "0.9.0"
description = "Collection of gluetool modules used by Testing Farm Team."
homepage = "https://gluetool-modules.readthedocs.io"
repository = "https://gitlab.com/testing-farm/gluetool-modules"
authors = [
"Evgeny Fedin <efedin@redhat.com>",
"Jan Havlin <jhavlin@redhat.com>",
"Guy Inger <ginger@redhat.com>",
"Martin Kluson <mkluson@redhat.com>",
"Martin Pitt <mpitt@redhat.com>",
"Ondrej Ptak <optak@redhat.com>",
"Milos Prchlik <mprchlik@redhat.com>",
"Miroslav Vadkerti <mvadkert@redhat.com>",
"Simon Walter <siwalter@redhat.com>"
]
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache-2.0",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: System",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Shells",
"Topic :: System :: Software Distribution",
"Topic :: Terminals"
]
include = ["gluetool_modules_framework/py.typed"]
readme = "README.rst"
[tool.poetry.scripts]
citool = "gluetool_modules_framework.tools.citool:run"
[tool.poetry.plugins."gluetool.modules"]
archive = "gluetool_modules_framework.helpers.archive:Archive"
ansible = "gluetool_modules_framework.helpers.ansible:Ansible"
artemis = "gluetool_modules_framework.provision.artemis:ArtemisProvisioner"
brew-builder = "gluetool_modules_framework.testing.pull_request_builder.brew_builder:BrewBuilder"
brew-build-task-params = "gluetool_modules_framework.helpers.brew_build_task_params:BrewBuildOptions"
brew = "gluetool_modules_framework.infrastructure.koji_fedora:Brew"
bugzilla = "gluetool_modules_framework.infrastructure.bugzilla:Bugzilla"
build-dependencies = "gluetool_modules_framework.helpers.build_dependencies:BuildDependencies"
ci-job = "gluetool_modules_framework.testing.ci_job:CIJob"
coldstore = "gluetool_modules_framework.helpers.coldstore:ColdStore"
copr = "gluetool_modules_framework.infrastructure.copr:Copr"
copr-builder = "gluetool_modules_framework.testing.pull_request_builder.copr_builder:CoprBuilder"
dashboard = "gluetool_modules_framework.helpers.dashboard:Dashboard"
debug = "gluetool_modules_framework.development.debug:Debug"
dist-git = "gluetool_modules_framework.infrastructure.distgit:DistGit"
docker = "gluetool_modules_framework.infrastructure._docker:Docker"
docker-provisioner = "gluetool_modules_framework.provision.docker:DockerProvisioner"
envinject = "gluetool_modules_framework.helpers.envinject:EnvInject"
events = "gluetool_modules_framework.helpers.events:Events"
execute-command = "gluetool_modules_framework.helpers.execute_command:ExecuteCommand"
git = "gluetool_modules_framework.infrastructure.git:Git"
github = "gluetool_modules_framework.infrastructure.github:GitHub"
github-copr-build-job = "gluetool_modules_framework.testing.pull_request_builder.github_copr_build_job:CoprBuildJob"
guess-environment = "gluetool_modules_framework.helpers.guess_environment:GuessEnvironment"
guest-setup = "gluetool_modules_framework.helpers.guest_setup:GuestSetup"
guest-setup-order = "gluetool_modules_framework.helpers.guest_setup_order:GuestSetupOrder"
hide-secrets = "gluetool_modules_framework.helpers.hide_secrets:HideSecrets"
openstack-job = "gluetool_modules_framework.testing.openstack.openstack_job:OpenStackJob"
install-ancestors = "gluetool_modules_framework.helpers.install_ancestors:InstallAncestors"
install-copr-build = "gluetool_modules_framework.helpers.install_copr_build:InstallCoprBuild"
install-koji-build-execute = "gluetool_modules_framework.helpers.install_koji_build_execute:InstallKojiBuildExecute"
install-mbs-build-execute = "gluetool_modules_framework.helpers.install_mbs_build_execute:InstallMBSBuild"
install-mbs-build = "gluetool_modules_framework.helpers.install_mbs_build:InstallMBSBuild"
install-repository = "gluetool_modules_framework.helpers.install_repository:InstallRepository"
jenkins-build-name = "gluetool_modules_framework.helpers.jenkins.jenkins_build_name:JenkinsBuildName"
jenkins = "gluetool_modules_framework.infrastructure.jenkins:CIJenkins"
koji = "gluetool_modules_framework.infrastructure.koji_fedora:Koji"
mbs = "gluetool_modules_framework.infrastructure.mbs:MBS"
memcached = "gluetool_modules_framework.infrastructure.memcached:Memcached"
mysql = "gluetool_modules_framework.database._mysql:MySQL"
notes = "gluetool_modules_framework.helpers.notes:Notes"
oom = "gluetool_modules_framework.helpers.oom:OutOfMemory"
osh = "gluetool_modules_framework.static_analysis.osh.osh:CIOpenScanHub"
osh-job = "gluetool_modules_framework.static_analysis.osh.osh_job:OSHJob"
pagure-brew-build-job = "gluetool_modules_framework.testing.pull_request_builder.pagure_brew_build_job:BrewBuildJob"
pagure = "gluetool_modules_framework.infrastructure.pagure:Pagure"
pagure-srpm = "gluetool_modules_framework.helpers.pagure_srpm:PagureSRPM"
pes = "gluetool_modules_framework.infrastructure.pes:PES"
pipeline-install-ancestors = "gluetool_modules_framework.pipelines.pipeline_install_ancestors:PipelineInstallAncestors"
pipeline-state-reporter = "gluetool_modules_framework.helpers.pipeline_state_reporter:PipelineStateReporter"
postgresql = "gluetool_modules_framework.database.postgresql:PostgreSQL"
reportportal = "gluetool_modules_framework.helpers.reportportal:ReportPortalModule"
rpminspect = "gluetool_modules_framework.static_analysis.rpminspect.rpminspect:CIRpminspect"
rpminspect-job = "gluetool_modules_framework.static_analysis.rpminspect.rpminspect_job:RpminspectJob"
rules-engine = "gluetool_modules_framework.helpers.rules_engine:RulesEngine"
semaphore = "gluetool_modules_framework.infrastructure.semaphore:Semaphore"
smtp = "gluetool_modules_framework.helpers.smtp:SMTP"
static-guest = "gluetool_modules_framework.infrastructure.static_guest:CIStaticGuest"
system-roles-job = "gluetool_modules_framework.testing.system_roles_job:SystemRolesJob"
task-dispatcher = "gluetool_modules_framework.dispatchers.task_dispatcher:TaskDispatcher"
tedude = "gluetool_modules_framework.testing.tedude:TeDuDe"
tedude-job = "gluetool_modules_framework.testing.tedude_job:TeDuDeJob"
test-batch-planner = "gluetool_modules_framework.dispatchers.test_batch_planner:TestBatchPlanner"
testing-farm-request = "gluetool_modules_framework.testing_farm.testing_farm_request:TestingFarmRequestModule"
testing-farm-request-state-reporter = "gluetool_modules_framework.helpers.testing_farm_request_state_reporter:TestingFarmRequestStateReporter"
testing-results = "gluetool_modules_framework.testing.testing_results:TestingResults"
testing-thread = "gluetool_modules_framework.helpers.testing_thread:TestingThread"
test-schedule-report = "gluetool_modules_framework.testing.test_schedule_report:TestScheduleReport"
test-scheduler-baseosci = "gluetool_modules_framework.testing.test_scheduler_baseosci:TestSchedulerBaseOSCI"
test-scheduler-testing-farm = "gluetool_modules_framework.testing.test_scheduler_testing_farm:TestSchedulerTestingFarm"
test-scheduler-sti = "gluetool_modules_framework.testing.test_scheduler_sti:TestSchedulerSTI"
test-scheduler-system-roles = "gluetool_modules_framework.testing.test_scheduler_system_roles:TestSchedulerSystemRoles"
test-schedule-runner = "gluetool_modules_framework.testing.test_schedule_runner:TestScheduleRunner"
test-schedule-runner-multihost = "gluetool_modules_framework.testing.test_schedule_runner_multihost:TestScheduleRunnerMultihost"
test-schedule-runner-sti = "gluetool_modules_framework.testing.test_schedule_runner_sti:STIRunner"
test-scheduler-upgrades = "gluetool_modules_framework.testing.test_scheduler_upgrades:TestSchedulerUpgrades"
test-schedule-tmt = "gluetool_modules_framework.testing.test_schedule_tmt:TestScheduleTMT"
test-schedule-tmt-multihost = "gluetool_modules_framework.testing.test_schedule_tmt_multihost:TestScheduleTMTMultihost"
trigger-message = "gluetool_modules_framework.helpers.trigger_message:TriggerMessage"
upload-results = "gluetool_modules_framework.helpers.upload_results:UploadResults"
url-shortener = "gluetool_modules_framework.helpers.url_shortener:URLShortener"
[tool.poetry.dependencies]
python = "~3.12"
ansible-core = "2.16.15"
# NOTE: without this dependency the installation will fail with
# "The 'backports-abc>=0.4' distribution was not found and is required by tornado"
backports-abc = "^0.5"
cmd2 = "0.8.6"
commonmark = "0.9.1"
docker = "3.5.1"
docker-pycreds = "0.3.0"
docutils = ">=0.19,<0.22"
fmf = "0.6.1"
future = "*"
gitdb2 = "2.0.6"
GitPython = "*"
gluetool = "*"
inotify = "0.2.10"
ipdb = { version = "^0.13.9", optional = true }
jaeger-client = "*"
jenkinsapi = "0.3.8"
jenkins-job-builder = "1.6.2"
jq = "*"
koji = "*"
mako = "*"
mysql-connector-python = "<9.6.0"
packaging = "^24.1"
proton = "0.8.8"
psycopg2 = "*"
pycurl = "*"
pymemcache = "2.0.0"
pyOpenSSL = "*"
python-bugzilla = "^3.2.0"
python-dateutil = "2.7.1"
python-qpid-proton = "0.18.1"
requestsexceptions = "*"
requests-kerberos = "*"
simplejson = "^3.17.2"
six = "*"
Sphinx = "^5.1"
sphinx-argparse = "*"
sphinxcontrib-programoutput = "*"
sphinx-rtd-theme = "*"
typing-extensions = "^4.4.0"
version-utils = "^0.3.2"
xsdata = "^23.5"
xsdata-attrs = "^21.11"
secret-type = "^0.3.0"
types-psutil = "^5.9.5.17"
pytest-xdist = "*"
pydantic = "^2.11.7"
ruamel-yaml = "0.16.13"
[tool.poetry.dev-dependencies]
lazy-object_proxy = "1.7.1"
pytest = "*"
pytest-catchlog = "*"
pytest-cov = "*"
pytest-mock = "*"
ruff = "*"
tox = "*"
yamllint = "1.16.0"
mypy = "0.991"
mypy-extensions = "0.4.3"
types-six = "*"
types-mock = "*"
types-requests = "*"
types-simplejson = "*"
[tool.poetry.urls]
"Bug Tracker" = "https://gitlab.com/testing-farm/gluetool-modules/issues"
[tool.poetry.extras]
development = ["ipdb"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
# Exclude test files
exclude = ["gluetool_modules_framework/tests"]
line-length = 120
[tool.ruff.lint]
# Only enable flake8-equivalent rules (E=pycodestyle errors, W=pycodestyle warnings, F=pyflakes)
select = ["E", "W", "F"]