mirror of
https://github.com/LiteyukiStudio/croterline.git
synced 2024-11-14 21:07:27 +08:00
32 lines
713 B
TOML
32 lines
713 B
TOML
[project]
|
|
name = "croterline"
|
|
dynamic = ["version"]
|
|
description = "Default template for PDM package"
|
|
authors = [
|
|
{name = "snowykami", email = "snowykami@outlook.com"},
|
|
]
|
|
dependencies = [
|
|
"magicoca>=1.0.6",
|
|
]
|
|
requires-python = ">=3.10"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
[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.dev-dependencies]
|
|
dev = [
|
|
"pytest>=8.3.3",
|
|
"black>=24.10.0",
|
|
"mypy>=1.11.2",
|
|
]
|
|
[tool.pdm]
|
|
distribution = true
|