22 lines
426 B
TOML
22 lines
426 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"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/module_bank"]
|
|
|
|
[project.scripts]
|
|
mb = "module_bank.cli:main"
|