23 lines
436 B
TOML
23 lines
436 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "gmail-header-backfill"
|
||
|
|
version = "0.1.0"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"asyncpg>=0.29",
|
||
|
|
"structlog>=24.1",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
gmail-header-backfill = "gmail_header_backfill.backfill:main"
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["src"]
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
asyncio_mode = "auto"
|
||
|
|
testpaths = ["tests"]
|