-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
67 lines (54 loc) · 1.31 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
[tool.poetry]
name = "ubi-manifest"
version = "0.0.1"
description = "A service for resolving manifests of UBI content."
license = "GPL-3.0-or-later"
readme = "README.md"
authors = []
repository="https://github.com/release-engineering/ubi_manifest"
documentation="http://TODO"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.9"
celery = {version = "*", extras = ["redis"]}
fastapi = "*"
pubtools-pulplib = "*"
attrs = "*"
more-executors = "*"
ubi-config = "*"
requests = "^2.32.3"
types-requests = "^2.32.0.20240712"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "*"
httpx = "*"
testfixtures = "*"
rpmdyn = "*"
bandit = "*"
requests-mock = "^1.12.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "*"
pre-commit = "*"
mypy = "*"
pylint = "*"
pytest-cov = "*"
uvicorn = {version = "*", extras = ["standard"]}
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
alabaster = "*"
[tool.poetry.group.server]
optional = true
[tool.poetry.group.server.dependencies]
uvicorn = {version = "*", extras = ["standard"]}
gunicorn = "*"