-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (103 loc) · 2.71 KB
/
pyproject.toml
File metadata and controls
110 lines (103 loc) · 2.71 KB
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
[project]
name = "waiverdb"
version = "1.4.0"
description = "An engine for storing waivers against test results"
authors = [
{name = "Red Hat, Inc. and others"}
]
license = {text = "GPL-2.0-or-later"}
readme = "README.md"
requires-python = ">=3.12,<3.14"
classifiers = [
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
# https://github.com/lepture/authlib/pull/662
# fix authlib to use correct auth method for token introspection
# fixes submitting waivers with Bodhi.
"authlib>=1.6.11",
"flask>=3.1.0",
"flask-oidc>=2.2.2",
"flask-session>=0.8.0",
"Flask-SQLAlchemy>=3.1.1",
"Flask-Cors>=6.0.0",
"Flask-Migrate>=4.0.7",
"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",
"requests-gssapi>=1.2.3",
# Monitoring
"prometheus_client>=0.23.0",
# Messaging
"fedora-messaging>=3.4.1",
"stomp.py>=8.1.0",
# 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",
"pydantic>=2.9.2",
"Flask-Pydantic>=0.13.0",
"flask-restx>=1.3.0",
"flask-wtf>=1.2.2",
]
[project.optional-dependencies]
test = [
"pytest>=9.0.3",
"pytest-cov>=7.0.0",
"mock>=5.1.0",
]
functional-test = [
"selenium>=4.24.0",
"pytest-selenium>=4.1.0",
]
docs = [
"sphinx>=8.0.0",
"sphinxcontrib-httpdomain>=1.8.1",
"markupsafe==3.0.3",
]
[project.scripts]
waiverdb = "waiverdb.manage:cli"
[project.urls]
Homepage = "https://waiverdb.readthedocs.io/"
Repository = "https://github.com/release-engineering/waiverdb"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["waiverdb"]
[tool.hatch.build.targets.sdist]
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",
]