module_bank/pyproject.toml

27 lines
477 B
TOML
Raw Permalink Normal View History

2026-01-23 14:45:49 +08:00
[project]
name = "module_bank"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
2026-01-23 15:24:51 +08:00
requires-python = ">=3.7"
2026-01-23 14:45:49 +08:00
dependencies = []
[[tool.uv.index]]
default = true
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[dependency-groups]
dev = [
"twine>=4.0.2",
]
2026-01-23 14:45:49 +08:00
[tool.hatch.build.targets.wheel]
packages = ["src/module_bank"]
[project.scripts]
mb = "module_bank.cli:main"