-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 959 Bytes
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 959 Bytes
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
[tool.poetry]
name = "telemetry-api"
version = "0.0.0"
description = ""
authors = ["Kirill Volychev <volychevk@gmail.com>"]
readme = "README.md"
packages = [{include = "telemetry_api"}]
[tool.poetry.dependencies]
python = "^3.13.11"
fastapi = "^0.136.1"
uvicorn = "^0.46.0"
sqlalchemy = "^2.0.49"
pydantic = "^2.13.4"
pydantic-settings = "^2.14.1"
aiosqlite = "^0.22.1"
asyncpg = "^0.31.0"
greenlet = "^3.5.0"
email-validator = "^2.3.0"
celery = {extras = ["redis"], version = "^5.6.3"}
redis = "^5.2.1"
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
flake8 = "^7.1.1"
flake8-black = "^0.3.6"
flake8-commas = "^2.1.0"
flake8-builtins = "^2.5.0"
flake8-variables-names = "^0.0.6"
pep8-naming = "^0.14.1"
reorder-python-imports = "^3.14.0"
autoflake = "^2.3.1"
setuptools = "^75.8.0"
pytest = "^9.0.3"
pytest-asyncio = "^1.3.0"
httpx = "^0.28.1"
locust = "^2.37.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"