-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
71 lines (60 loc) · 1.63 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
[tool.poetry]
name = "resultsdb"
version = "2.2.0"
description = "The test results store engine for (not only) Fedora QA tools"
authors = [
"Red Hat, Inc. and others"
]
license = "GPL-2.0-or-later"
readme = "README.md"
repository = "https://github.com/release-engineering/resultsdb"
homepage = "https://docs.resultsdb20.apiary.io/"
include = [
"LICENSE",
"README.md",
"alembic.ini",
"tox.ini",
"resultsdb/templates/*",
"resultsdb/static/*",
"resultsdb/alembic/*",
]
[tool.poetry.dependencies]
python = ">=3.12,<3.14"
flask = "^3.0.1"
gunicorn = "^23.0.0"
fedora-messaging = "^3.4.1"
stomp_py = "^8.2.0"
pytest = {version = "^8.3.3", optional = true}
pytest-cov = {version = "^6.0.0", optional = true}
Flask-SQLAlchemy = "^3.1.1"
SQLAlchemy = {version = "^2.0.36"}
psycopg2-binary = {version = "^2.9.10"}
alembic = "^1.13.3"
iso8601 = "^2.1.0"
pydantic = "^2.10.2"
Flask-Pydantic = "^0.12.0"
email-validator = "^2.2.0"
python-ldap = "^3.4.3"
Flask-pyoidc = "^3.14.3"
Flask-Session = "^0.8.0"
# tracing support
opentelemetry-exporter-otlp = "^1.25.0"
opentelemetry-instrumentation = "^0.46b0"
opentelemetry-instrumentation-flask = "^0.46b0"
opentelemetry-instrumentation-sqlalchemy = "^0.46b0"
tenacity = "^9.0.0"
mod-wsgi = "^5.0.2"
[tool.poetry.extras]
test = [
"pytest",
"pytest-cov",
]
[tool.poetry.scripts]
resultsdb = "resultsdb.__main__:cli"
[tool.poetry.plugins."resultsdb.messaging.plugins"]
dummy = "resultsdb.messaging:DummyPlugin"
fedmsg = "resultsdb.messaging:FedmsgPlugin"
stomp = "resultsdb.messaging:StompPlugin"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"