24 lines
503 B
TOML
24 lines
503 B
TOML
[project]
|
|
name = "schedule"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "tao.chen", email = "93983997+taochen-ct@users.noreply.github.com" }
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
schedule = "schedule:main"
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
|
|
default = true
|
|
|
|
[tool.uv.sources]
|
|
common = { workspace = true }
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build" |