-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.06 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
[project]
name = "telegram-proxy"
version = "0.1.0"
description = "Telegram-compatible proxy for eXpress BotX API"
readme = "README.md"
requires-python = ">=3.11,<3.14"
authors = [{ name = "freemind" }]
dependencies = [
"fastapi (>=0.116.1,<0.117.0)",
"uvicorn[standard] (>=0.35.0,<0.36.0)",
"httpx (>=0.28.1,<0.29.0)",
"structlog (>=25.4.0,<26.0.0)",
"python-multipart (>=0.0.20,<0.0.21)",
"redis (>=5.2.1,<6.0.0)",
"aiokafka (>=0.12.0,<0.13.0)",
"dependency-injector(==4.41.0)",
"pydantic-settings (>=2.11.0,<3.0.0)",
"pybotx (>=0.76.0,<0.77.0)",
"factory-boy (>=3.3.3,<4.0.0)",
"testcontainers (>=4.14.2,<5.0.0)",
]
[tool.poetry]
packages = [{ include = "app" }]
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.2"
ruff = "^0.12.10"
pytest-cov = "^7.1.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
source = ["app"]
omit = [
"tests/*",
"*/tests/*",
"*/conftest.py",
]
[tool.coverage.report]
omit = [
"tests/*",
"*/tests/*",
"*/conftest.py",
]