You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
596 B
TOML
42 lines
596 B
TOML
[project]
|
|
name = "pytraits"
|
|
version = "0.1.0"
|
|
description = "python trait like rust"
|
|
authors = [
|
|
{name = "JimZhang", email = "zzl22100048@gmail.com"},
|
|
]
|
|
dependencies = []
|
|
requires-python = ">=3.10"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
|
|
[tool.pdm]
|
|
distribution = true
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
exclude = [
|
|
"tests",
|
|
]
|
|
line-length = 120
|
|
select = [
|
|
"E",
|
|
"F",
|
|
"W",
|
|
"I"
|
|
]
|
|
target-version = "py310"
|
|
[tool.ruff.isort]
|
|
combine-as-imports = true
|
|
|
|
[tool.pdm.dev-dependencies]
|
|
dev = [
|
|
"setuptools>=69.0.3",
|
|
]
|