24 lines
503 B
TOML
24 lines
503 B
TOML
[project]
|
|
name = "m2-market"
|
|
version = "0.1.0"
|
|
description = "M2 Marketplace CLI — search | show | install | wallet | publish (contracts/cli.md)"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"click>=8.1",
|
|
"httpx>=0.27",
|
|
"jsonschema>=4.23",
|
|
"pyyaml>=6",
|
|
]
|
|
|
|
[project.scripts]
|
|
m2-market = "m2_market.cli:main"
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=8"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/m2_market"]
|