forked from cartsnitch/cartsnitch
342906c9d1
git-subtree-dir: receiptwitness git-subtree-split: e8d374a89ed8978f429598e02d31b1c5963efe22
55 lines
1.1 KiB
TOML
55 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "receiptwitness"
|
|
version = "0.1.0"
|
|
description = "CartSnitch receipt/purchase history ingestion service"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"cartsnitch-common>=0.1.0",
|
|
"playwright>=1.49,<2.0",
|
|
"playwright-stealth>=1.0,<2.0",
|
|
"cryptography>=42.0,<44.0",
|
|
"fastapi>=0.115,<1.0",
|
|
"uvicorn[standard]>=0.30,<1.0",
|
|
"redis>=5.0,<6.0",
|
|
"pydantic>=2.0,<3.0",
|
|
"pydantic-settings>=2.0,<3.0",
|
|
"sqlalchemy[asyncio]>=2.0,<3.0",
|
|
"asyncpg>=0.29,<1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.23",
|
|
"ruff>=0.3",
|
|
"pytest-cov>=5.0",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/receiptwitness"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "N", "W", "UP"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.12"
|
|
strict = false
|
|
warn_return_any = true
|
|
warn_unused_ignores = true
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "cartsnitch_common.*"
|
|
ignore_missing_imports = true
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|