This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
81 lines (76 loc) · 2.27 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = [
"setuptools>=65.5.1", # not directly required, pinned by Snyk to avoid a vulnerability
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["elliottlib", "elliottlib.cli"]
[project]
dynamic = ["version"]
name="rh-elliott"
authors = [
{name = "AOS ART Team", email = "[email protected]"},
]
description = "CLI tool for managing and automating Red Hat software releases"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["openshift", "errata", "advisory"]
license.file = "LICENSE"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Environment :: Console",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Bug Tracking",
"Topic :: Software Development :: Build Tools",
"Topic :: Utilities",
"Natural Language :: English",
]
dependencies = [
"aiohttp[speedups] >= 3.6",
"click >= 8.1.3",
"errata-tool ~= 1.31.0",
"future",
"koji >= 1.18",
"semver",
"pydantic ~= 1.10.7",
"pygit2 == 1.10.1", # https://github.com/libgit2/pygit2/issues/1176
"python-bugzilla >= 3.2",
"pyyaml",
"requests",
"requests-gssapi ~= 1.2.3",
"ruamel.yaml",
"tenacity",
"jira >= 3.4.1", # https://github.com/pycontribs/jira/issues/1486
]
[project.scripts]
elliott = "elliottlib.cli.__main__:main"
[project.urls]
homepage = "https://github.com/openshift-eng/elliott"
repository = "https://github.com/openshift-eng/elliott.git"
[project.optional-dependencies]
tests = [
# test reqs
"flexmock",
# tox reqs
"coverage>=5.3",
"flake8>=3.8.4",
"tox>=3.20.1",
# makefile reqs
"virtualenv>=20.2.2",
"pytest>=6.2.1",
"mypy>=0.812",
"pylint",
]