-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
122 lines (105 loc) · 2.8 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[tool.poetry]
name = "waiverdb"
version = "1.4.0"
description = "An engine for storing waivers against test results"
authors = [
"Red Hat, Inc. and others"
]
license = "GPL-2.0-or-later"
readme = "README.md"
repository = "https://github.com/release-engineering/waiverdb"
homepage = "https://waiverdb.readthedocs.io/"
include = [
"COPYING",
"README.md",
"conf/*",
"conf/client.conf.example",
"conf/client_secrets.json",
"conf/fedora-messaging-example.toml",
"conf/settings.py.example",
"conftest.py",
"docs/*",
"fedmsg.d/*.py",
"pytest.ini",
"run-dev-server.py",
"tests/*.py",
"tests/client_secrets.json",
"tox.ini",
"waiverdb/migrations/*.ini",
"waiverdb/migrations/*.mako",
"waiverdb/migrations/*.py",
"waiverdb/migrations/README",
"waiverdb/migrations/versions",
"waiverdb/static/*",
"waiverdb/templates/*.html",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
# https://github.com/lepture/authlib/pull/662
# fix authlib to use correct auth method for token introspection
# fixes submitting waivers with Bodhi. remove this when there is
# a fixed stable authlib release
authlib = {git = "https://github.com/AdamWill/authlib.git", branch = "oauth2-fix-introspect-endpoint"}
flask = "^2.2.5"
flask-oidc = "^2.2.0"
flask-session = ">=0.6.0"
Flask-SQLAlchemy = "^3.1.1"
Flask-Cors = "^5.0.0"
Flask-Migrate = "^4.0.5"
itsdangerous = {version = "==2.0.1", optional = true}
gssapi = "^1.8.3"
python-ldap = "^3.4.3"
SQLAlchemy = "^2.0"
psycopg2-binary = "^2.9.8"
gunicorn = "^23.0.0"
requests = "^2.32.0"
python-dateutil = "^2.9.0"
# CLI
click = "^8.1.7"
configparser = "^7.1.0"
openidc-client = "^0.6.0"
requests-gssapi = "^1.2.3"
# Monitoring
prometheus_client = "^0.21.0"
# Messaging
fedora-messaging = "^3.4.1"
"stomp.py" = "^8.1.0"
# Tests
pytest = {version = "^8.3.3", optional = true}
pytest-cov = {version = "^5.0.0", optional = true}
mock = {version = "^5.1.0", optional = true}
# Functional Tests
selenium = "^4.24.0"
pytest-selenium = "^4.1.0"
# Tracing
opentelemetry-api = "^1.25.0"
opentelemetry-exporter-otlp = "^1.25.0"
opentelemetry-instrumentation-flask = "^0.46b0"
opentelemetry-instrumentation-sqlalchemy = "^0.46b0"
# Documentation
sphinx = {version = "^7.1.1", optional = true}
sphinxcontrib-httpdomain = {version = "^1.8.1", optional = true}
markupsafe = {version = "==2.1.5", optional = true}
pydantic = "^2.9.2"
Flask-Pydantic = "^0.12.0"
flask-restx = "^1.3.0"
[tool.poetry.extras]
test = [
"pytest",
"pytest-cov",
"mock",
]
functional-test = [
"selenium",
"pytest-selenium",
]
docs = [
"sphinx",
"sphinxcontrib-httpdomain",
]
[tool.poetry.scripts]
waiverdb-cli = "waiverdb.cli:cli"
waiverdb = "waiverdb.manage:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"