server-status-client/pyproject.toml
snowykami 87418edeea
Some checks failed
Compile / build (x64, ubuntu-latest) (push) Failing after 15s
Compile / build (x64, windows-latest) (push) Failing after 21s
修复脚本执行错误
2024-10-05 23:01:17 +08:00

35 lines
839 B
TOML

[project]
name = "server-status"
dynamic = ["version"]
description = "Server status client"
authors = [
{ name = "snowykami", email = "snowykami@outlook.com" },
]
dependencies = [
"requests>=2.32.3",
"psutil>=6.0.0",
"arclet-alconna>=1.8.30",
"pytz>=2024.2",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project.scripts]
server-status = "server_status.__main__:main"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "scm"
tag_filter = "v*"
tag_regex = '^v(?:\D*)?(?P<version>([1-9][0-9]*!)?(0|[1-9][0-9]*)(\.(0|[1-9][0-9]*))*((a|b|c|rc)(0|[1-9][0-9]*))?(\.post(0|[1-9][0-9]*))?(\.dev(0|[1-9][0-9]*))?$)$'
[[tool.pdm.source]]
name = "pypi"
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"