-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 958 Bytes
/
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
[tool.poetry]
name = "notifications-router-v2"
version = "1.1.0"
description = "Notifications router"
authors = ["Eldos <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "notifications_router_v2"}]
[tool.poetry.dependencies]
python = "^3.11"
faststream = {extras = ["rabbit"], version = "^0.5.2"}
aiogram = "^3.4.1"
httpx = "^0.27.0"
humanize = "^4.9.0"
sentry-sdk = "^1.45.0"
structlog = "^24.1.0"
structlog-sentry = "^2.1.0"
[tool.poetry.group.dev.dependencies]
factory-boy = "^3.3.0"
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"src",
"tests",
]
[tool.coverage.run]
omit = [
"src/dependencies.py",
"src/handlers/*",
"src/models/*",
"src/enums/*",
"src/callback_data/*",
"src/config.py",
"src/**/__init__.py",
"src/main.py",
"src/logger.py"
]