-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
57 lines (52 loc) · 1.52 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
53
54
55
56
57
[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="aos-qe@redhat.com"}
]
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 == 5.10.0",
"gspread-formatting",
"click >= 8.1.3",
"errata-tool >= 1.29.0",
"pyyaml",
"requests > 2.25.1",
"slack_sdk",
"requests-gssapi ~= 1.2.3",
"jira >= 3.4.1",
"python-jenkins",
"pip-system-certs",
"python-jose",
"cryptography",
"artcommon@git+https://github.com/openshift-eng/art-tools.git@main#subdirectory=artcommon",
"pyartcd@git+https://github.com/openshift-eng/art-tools.git@main#subdirectory=pyartcd",
"rh-elliott@git+https://github.com/openshift-eng/art-tools.git@main#subdirectory=elliott",
"rh-doozer@git+https://github.com/openshift-eng/art-tools.git@main#subdirectory=doozer",
"langchain-community",
"openai"
]
[project.scripts]
oar = "oar.cli.__main__:main"
oarctl = "oar.cli.cmd_controller_group:cli"
[project.urls]
homepage = "https://github.com/openshift/release-tests"
repository = "https://github.com/openshift/release-tests.git"