forked from release-engineering/resultsdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (61 loc) · 1.68 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
[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 = "http://docs.resultsdb20.apiary.io/"
include = [
"LICENSE",
"README.md",
"alembic.ini",
"tox.ini",
"resultsdb/templates/*",
"resultsdb/static/*",
"resultsdb/alembic/*",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
flask = "^2.3.1"
gunicorn = "^21.2.0"
fedora-messaging = "^3.4.1"
"stomp.py" = "^8.1.0"
pytest = {version = "^7.2.0", optional = true}
pytest-cov = {version = "^4.0.0", optional = true}
tox = {version = "^4.6.3", optional = true}
tox-docker = {version = "^4.0.0", optional = true}
Flask-SQLAlchemy = "^3.0.5"
SQLAlchemy = {version = "^2.0.17"}
psycopg2-binary = {version = "^2.9.3"}
alembic = "^1.11.1"
iso8601 = "^2.0.0"
pydantic = "^1.10.12"
Flask-Pydantic = "^0.11.0"
email-validator = "^2.0.0"
python-ldap = "^3.4.3"
Flask-pyoidc = "^3.14.0"
# dependency of Flask-pyoidc;
# oic-1.6.1 is compatible only with pydantic 2
# whereas Flask-Pydantic needs older versions
oic = {version = "<=1.6.0", optional = true}
Flask-Session = "^0.5.0"
[tool.poetry.extras]
test = [
"pytest",
"pytest-cov",
"tox",
"tox-docker",
]
[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"