32 lines
564 B
TOML
32 lines
564 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "mail-body-ingest"
|
||
|
|
version = "0.1.0"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"asyncpg>=0.29",
|
||
|
|
"aiohttp>=3.9",
|
||
|
|
"structlog>=24.1",
|
||
|
|
"kb-mail",
|
||
|
|
"kb-retrieval",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"pytest>=8.1",
|
||
|
|
"pytest-asyncio>=0.23",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
mail-body-ingest = "mail_body_ingest.ingest:main"
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["src"]
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
asyncio_mode = "auto"
|
||
|
|
testpaths = ["tests"]
|