-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
82 lines (75 loc) · 1.77 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
[tool.black]
line-length = 140
target-version = ["py311"]
[tool.semantic_release]
version_variables = ["common/constants.py:APP_VERSION"]
version_toml = ["pyproject.toml:tool.poetry.version"]
commit_author = "vmaas-bot <[email protected]>"
[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"style",
"refactor",
"test",
]
minor_tags = ["feat"]
patch_tags = ["build", "chore", "ci", "fix", "perf", "refactor"]
[tool.isort]
profile = "black"
[tool.poetry]
name = "vulnerability-engine"
version = "2.42.11"
description = ""
authors = ["RH Insights <[email protected]>"]
readme = "README.md"
packages = []
[tool.poetry.dependencies]
python = "~3.11"
python-dateutil = "^2.8.2"
a2wsgi = "^1.10.4"
aiohttp = "^3.9.3"
aiokafka = "^0.10.0"
app-common-python = "^0.2.7"
apscheduler = "^3.10.4"
asyncpg = "^0.29.0"
boto3 = "^1.34.122"
botocore = "^1.34.122"
flask = "^3.0.2"
gitpython = "^3.1.43"
connexion = {version = "^3.0.6", extras = ["swagger-ui", "flask"]}
gunicorn = "^23.0.0"
peewee = "^3.17.1"
prometheus-client = "^0.20.0"
psycopg2 = "^2.9.9"
psycopg-pool = "^3.2.1"
py-flags = "^1.1.4"
pytz = "^2024.1"
requests = "^2.32.3"
watchtower = "^3.2.0"
psycopg = {version = "^3.1.19", extras = ["pool"]}
unleashclient = "^5.8.0"
uvicorn = "^0.27.1"
flask-limiter = "^3.5.0"
PyYAML = "^6.0.1"
kafka-python = "^2.0.2"
prometheus-async = "^22.2.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
pur = "^7.3.1"
pytest = "^7.4.0"
pytest-asyncio = "^0.15.1"
schema = "^0.7.4"
testing-postgresql = "^1.3.0"
tornado = "^6.3.3"
python-box = "^5.3.0"
insights-core = "^3.3.2"
pytest-cov = "^2.11.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"