-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
72 lines (66 loc) · 1.82 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
[tool.black]
line-length = 140
target-version = ["py312"]
[tool.semantic_release]
version_variables = ["common/constants.py:APP_VERSION"]
version_toml = ["pyproject.toml:project.version"]
commit_author = "vmaas-bot <40663028+vmaas-bot@users.noreply.github.com>"
[tool.isort]
profile = "black"
[project]
name = "vulnerability-engine"
version = "2.74.1"
readme = "README.md"
packages = []
package-mode = false
requires-python = ">=3.12,<3.14"
[tool.poetry.dependencies]
python-dateutil = "^2.8.2"
a2wsgi = "^1.10.4"
aiohttp = "^3.10.11"
aiokafka = {version = "^0.13.0", extras = ["lz4"]}
app-common-python = "^0.2.7"
apscheduler = "^3.10.4"
asyncpg = "^0.31.0"
boto3 = "^1.34.122"
botocore = "^1.34.122"
# Pinned due to build issue in Konflux
cramjam = "=2.10.0"
flask = "^3.1.1"
gitpython = "^3.1.43"
connexion = {version = "^3.1.0", extras = ["swagger-ui", "flask"]}
gunicorn = "^23.0.0"
peewee = "^3.18.1"
prometheus-client = "^0.25.0"
psycopg2 = "^2.9.9"
psycopg-pool = "^3.2.1"
py-flags = "^1.1.4"
pytz = "^2025.2"
requests = "^2.32.5"
watchtower = "^3.2.0"
psycopg = {version = "^3.1.19", extras = ["pool"]}
unleashclient = "<6.0.0"
uvicorn = "^0.45.0"
PyYAML = "^6.0.1"
prometheus-async = "^25.0.0"
# Pinned due to build issue in Konflux
rpds-py = "<=0.24.0"
kessel-sdk = {extras = ["auth"], version = "^2.1.0"}
# Unlock when propcache > 0.4.1 is released
cython = "<3.2.0"
# maturin@1.13.2 requires rustc 1.89 (not in RHEL 9 yet)
maturin = "=1.13.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.0"
pur = "^7.3.1"
pytest = "^9.0.2"
pytest-asyncio = "^1.0.0"
schema = "^0.7.4"
testing-postgresql = "^1.3.0"
python-box = "^7.0.0"
insights-core = "^3.3.2"
pytest-cov = "^7.0.0"
pytest-aiohttp = "^1.0.5"
[build-system]
requires = ["poetry-core==2.1.3", "setuptools-rust==1.11.1", "puccinialin==0.1"]
build-backend = "poetry.core.masonry.api"