server-status-client/pyproject.toml

30 lines
723 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 = [
2024-10-03 00:13:57 +08:00
{ name = "snowykami", email = "snowykami@outlook.com" },
2024-10-02 08:29:51 +08:00
]
dependencies = [
"requests>=2.32.3",
"psutil>=6.0.0",
"arclet-alconna>=1.8.30",
]
requires-python = ">=3.11"
readme = "README.md"
2024-10-03 00:13:57 +08:00
license = { text = "MIT" }
2024-10-02 08:29:51 +08:00
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
2024-10-03 00:13:57 +08:00
[project.scripts]
2024-10-03 00:14:08 +08:00
server-status = "server_status.__main__:main"
2024-10-02 08:29:51 +08:00
[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:52:51 +08:00
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]*))?$)$'