module_bank/pyproject.toml

27 lines
477 B
TOML

[project]
name = "module_bank"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.7"
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",
]
[tool.hatch.build.targets.wheel]
packages = ["src/module_bank"]
[project.scripts]
mb = "module_bank.cli:main"