chore: initial commit

This commit is contained in:
2025-10-27 17:18:09 +01:00
commit 8806d598eb
48 changed files with 10024 additions and 0 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[project]
name = "warehouse"
version = "0.0.1"
requires-python = ">=3.12"
dependencies = [
"sqlalchemy[asyncio]>=2.0",
"aioodbc>=0.3.3",
# "orjson>=3.9" # opzionale: il tuo codice fa fallback su json puro
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "mypy", "black", "flake8"]
[tool.pytest.ini_options]
addopts = "-q --maxfail=1"
pythonpath = ["."]