server-status-client/pyproject.toml

28 lines
659 B
TOML
Raw Normal View History

2024-10-02 08:29:51 +08:00
[project]
2024-10-02 12:47:32 +08:00
name = "server-status"
dynamic = ["version"]
2024-10-02 08:29:51 +08:00
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",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
2024-10-02 12:47:32 +08:00
[tool.pdm.version]
source = "scm"
2024-10-02 12:51:11 +08:00
tag_filter = "v*"
2024-10-02 12:47:32 +08:00
tag_regex = '^test/(?:\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]*))?$)$'