forked from openshift/release-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.23 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools>=65.5.1",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["oar"]
[tool.setuptools_scm]
write_to = "oar/_version.py"
[project]
dynamic = ["version"]
name = "oar"
authors = [
{name="AOS QE TRT Team", email="[email protected]"}
]
description = "CLI tool for automating QE z-stream release tasks"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["openshift", "oar"]
license.file = "LICENSE"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dependencies = [
"gspread",
"gspread-formatting",
"click >= 8.1.3",
"errata-tool >= 1.29.0",
"pyyaml",
"requests",
"slack_sdk",
"requests-gssapi ~= 1.2.3",
"jira >= 3.4.1",
"python-jenkins",
"beautifulsoup4",
"pip-system-certs",
"artcommon@git+https://github.com/openshift-eng/art-tools.git@main#subdirectory=artcommon",
"rh-elliott@git+https://github.com/openshift-eng/art-tools.git@main#subdirectory=elliott",
"lxml"
]
[project.scripts]
oar = "oar.cli.__main__:main"
[project.urls]
homepage = "https://github.com/openshift/release-tests"
repository = "https://github.com/openshift/release-tests.git"