-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (62 loc) · 1.61 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
[tool.poetry]
name = "UGC Service"
version = "0.1.0"
description = "User-Generated Content service"
authors = ["Team 5 <Your address email ([email protected])>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "ugc-service" }]
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.isort]
profile = "black"
src_paths = ["src/app", "performance_tests/"]
[tool.poetry.dependencies]
python = "^3.10 || ^3.11"
fastapi = "^0.100.0"
pydantic = "^2.1.1"
python-dotenv = "^1.0.0"
httpx = "^0.24.1"
gunicorn = "^21.2.0"
pyjwt = { extras = ["crypto"], version = "^2.8.0" }
orjson = "^3.9.2"
uvicorn = "^0.23.1"
redis = "^4.6.0"
pydantic-settings = "^2.0.2"
aiokafka = "^0.8.1"
sentry-sdk = {extras = ["fastapi"], version = "^1.29.2"}
motor = "^3.2.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
bandit = "^1.7.5"
mypy = "^1.4.1"
flake8-bandit = "^4.1.1"
flake8-print = "^5.0.0"
flake8-broken-line = "^1.0.0"
flake8-bugbear = "^23.7.10"
flake8-commas = "^2.1.0"
pre-commit = "^3.3.3"
flake8-pytest = "^1.4"
flake8-pytest-style = "^1.7.2"
black = "^23.7.0"
isort = "^5.12.0"
types-redis = "^4.6.0.3"
motor-types = "^1.0.0b2"
flake8-html = "^0.4.3"
[tool.poetry.group.performance_testing.dependencies]
tqdm = "^4.65.0"
clickhouse-driver = "^0.2.6"
vertica-python = "^1.3.2"
pymongo = "^4.4.1"
psycopg = {extras = ["binary"], version = "^3.1.10"}
[tool.poetry.group.etl.dependencies]
aiokafka = "^0.8.1"
[tool.poetry.group.pytest.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.1"
faker = "^19.3.0"
httpx = "^0.24.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"