-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (65 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
71 lines (65 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "imperialhouseholdagency"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"alembic>=1.16.5",
"asyncpg>=0.30.0",
"discord-py>=2.6.3",
"greenlet>=3.3.0",
"injector>=0.22.0",
"logfire>=4.15.1",
"psycopg2-binary>=2.9.10",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"python-ulid>=3.1.0",
"sentry-sdk>=2.37.1",
"sqlalchemy>=2.0.43",
]
[dependency-groups]
dev = [
"mypy>=1.17.1",
"pip-licenses>=5.0.0",
"pytest>=8.4.2",
"pytest-asyncio>=1.1.0",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.0",
"ruff>=0.13.0",
"ty>=0.0.4",
]
[tool.mypy]
plugins = ["pydantic.mypy"]
strict = true
exclude = [
"migration/"
]
[tool.ruff]
exclude = [
"migration/"
]
[tool.pytest.ini_options]
addopts = "--cov=./src --cov-report=xml --cov-report=term-missing"
testpaths = ["src"]
python_files = ["test_*.py"]
[tool.coverage.run]
source = ["."]
omit = [
"*/test_*.py",
"*/conftest.py",
"migration/*",
"*/__pycache__/*",
"*/venv/*",
"*/.venv/*",
# External service initialization modules (require actual external services)
"src/system/infrastructure/ext/logfire/init.py",
"src/system/infrastructure/ext/sentry/init.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
]