mirror of
https://github.com/LiteyukiStudio/croterline.git
synced 2024-11-15 05:14:26 +08:00
31 lines
693 B
TOML
31 lines
693 B
TOML
|
[project]
|
||
|
name = "croterline"
|
||
|
dynamic = ["version"]
|
||
|
description = "Default template for PDM package"
|
||
|
authors = [
|
||
|
{name = "snowykami", email = "snowykami@outlook.com"},
|
||
|
]
|
||
|
dependencies = [
|
||
|
"magicoca>=1.0.1",
|
||
|
]
|
||
|
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",
|
||
|
]
|
||
|
[tool.pdm]
|
||
|
distribution = true
|