mirror of
https://github.com/daylinmorgan/swydd.git
synced 2024-11-07 01:33:14 -06:00
34 lines
598 B
TOML
34 lines
598 B
TOML
[project]
|
|
name = "swydd"
|
|
version = "0.1.0"
|
|
description = "Default template for PDM package"
|
|
authors = [
|
|
{name = "Daylin Morgan", email = "daylinmorgan@gmail.com"},
|
|
]
|
|
dependencies = []
|
|
requires-python = ">=3.9"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
|
|
[tool.pdm]
|
|
distribution = true
|
|
|
|
[tool.pdm.dev-dependencies]
|
|
dev = [
|
|
"pre-commit>=3.6.2",
|
|
"mypy>=1.8.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
select = ["E","F","I"]
|
|
ignore = ["E402"]
|
|
|
|
[tool.mypy]
|
|
check_untyped_defs = true
|
|
disallow_untyped_defs = true
|
|
warn_unused_configs = true
|