21 lines
481 B
TOML
21 lines
481 B
TOML
[project]
|
|
name = "m2-market-indexer"
|
|
version = "0.1.0"
|
|
description = "Registry → market:catalog sync; reindex = full rebuild (contracts/catalog-index.md)"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"httpx>=0.27",
|
|
]
|
|
|
|
[project.scripts]
|
|
m2-market-indexer = "m2_market_indexer.reindex:main"
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=8"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/m2_market_indexer"]
|