init commit

This commit is contained in:
2026-04-08 17:18:55 +08:00
commit 9ffd8165a6
8 changed files with 1439 additions and 0 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "order-query"
version = "0.1.0"
description = "Query order details from Azure Table Storage"
requires-python = ">=3.11"
dependencies = [
"azure-data-tables>=12.7.0",
"textual>=3.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["order_query"]
[project.scripts]
order-query = "order_query.main:main"