1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
[project]
name = "pbs-installer"
description = "Installer for Python Build Standalone"
authors = [
{name = "Frost Ming", email = "me@frostming.com"},
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/frostming/pbs-installer"
Documentation = "http://pbs-installer.readthedocs.io"
[project.optional-dependencies]
download = [
"httpx<1,>=0.27.0",
]
install = [
"zstandard>=0.21.0",
]
all = [
"pbs-installer[download,install]"
]
[project.scripts]
pbs-install = "pbs_installer.__main__:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.version]
source = "scm"
[tool.pdm.scripts]
update = { shell = "./scripts/update.sh" }
[tool.pdm.dev-dependencies]
doc = [
"mkdocs>=1.5.3",
"mkdocs-material>=9.5.14",
"mkdocstrings[python]>=0.24",
]
dev = [
"mypy>=1.9.0",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
strict = true
files = ["src", "tests"]
pretty = true
|