-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
75 lines (65 loc) · 1.74 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
[tool.poetry]
name = "greenwave"
version = "2.3.0"
description = "Decision-making service for gating in a software delivery pipeline"
authors = [
"Red Hat, Inc. and others"
]
license = "GPL-2.0-or-later"
readme = "README.md"
repository = "https://github.com/release-engineering/greenwave"
homepage = "https://gating-greenwave.readthedocs.io/"
include = [
"COPYING",
"README.md",
"pytest.ini",
"conftest.py",
"run-dev-server.py",
"tox.ini",
"conf/*",
"docs/*",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.14"
PyYAML = "^6.0"
"dogpile.cache" = "^1.3.3"
flask = "^3.0.3"
gunicorn = "^23.0.0"
requests = "^2.32.3"
python-dateutil = "^2.8.2"
fedora-messaging = "^3.4.1"
# latest versions of stomp.py 8.0.0 and 8.0.1 are causing connection issues
"stomp.py" = "^8.1.2"
pytest = {version = "^8.3.3", optional = true}
pytest-cov = {version = "^5.0.0", optional = true}
mock = {version = "^5.1.0", optional = true}
requests-mock = {version = "^1.11.0", optional = true}
SQLAlchemy = {version = "^2.0.35", optional = true}
psycopg2-binary = {version = "^2.9.9", optional = true}
sphinx = {version = "^7.1.2", optional = true}
sphinxcontrib-httpdomain = {version = "^1.8.1", optional = true}
statsd = "^4.0.1"
pymemcache = "^4.0.0"
defusedxml = "^0.7.1"
opentelemetry-sdk = "^1.24.0"
opentelemetry-instrumentation-flask = "^0.45b0"
opentelemetry-instrumentation-requests = "^0.45b0"
opentelemetry-exporter-otlp-proto-http = "^1.24.0"
[tool.poetry.extras]
test = [
"pytest",
"pytest-cov",
"mock",
"requests-mock",
]
functional-test = [
"SQLAlchemy",
"psycopg2-binary",
]
docs = [
"sphinx",
"sphinxcontrib-httpdomain",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"