swydd/pyproject.toml

42 lines
759 B
TOML
Raw Normal View History

2024-03-05 13:52:37 -06:00
[project]
name = "swydd"
2024-03-08 12:59:36 -06:00
description = "swydd will yield desired deliverables"
2024-10-24 18:35:06 -05:00
authors = [{ name = "Daylin Morgan", email = "daylinmorgan@gmail.com" }]
2024-03-05 13:52:37 -06:00
dependencies = []
requires-python = ">=3.9"
readme = "README.md"
2024-10-24 18:35:06 -05:00
license = { text = "MIT" }
2024-03-11 13:59:06 -05:00
dynamic = ["version"]
2024-03-05 13:52:37 -06:00
2024-07-22 15:17:58 -05:00
[tool.uv]
dev-dependencies = [
2024-10-24 18:35:06 -05:00
"pre-commit>=3.6.2",
"mypy>=1.8.0",
"pytest>=8.3.2",
# docs
"sphinx",
"sphinx-autobuild",
"shibuya",
2024-03-05 13:52:37 -06:00
]
2024-10-23 15:33:54 -05:00
[tool.ruff.lint]
2024-10-24 18:35:06 -05:00
select = ["E", "F", "I"]
2024-03-05 13:52:37 -06:00
ignore = ["E402"]
2024-07-22 15:17:58 -05:00
[tool.pyright]
reportUnusedExpression = false
2024-03-05 13:52:37 -06:00
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = true
warn_unused_configs = true
2024-03-11 13:59:06 -05:00
2024-07-22 15:17:58 -05:00
[tool.pdm.version]
source = "file"
path = "src/swydd/__init__.py"
2024-03-11 13:59:06 -05:00
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"