29 lines
523 B
TOML
29 lines
523 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "kb-mail"
|
||
|
|
version = "0.1.0"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"asyncpg>=0.29",
|
||
|
|
"structlog>=24.1",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"pytest>=8.1",
|
||
|
|
"pytest-asyncio>=0.23",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["src"]
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
asyncio_mode = "auto"
|
||
|
|
testpaths = ["tests"]
|
||
|
|
markers = [
|
||
|
|
"integration: requires a running kb-postgres instance (set KB_TEST_DSN)",
|
||
|
|
]
|