mirror of
https://github.com/daylinmorgan/swydd.git
synced 2024-11-06 17:23:16 -06:00
40 lines
758 B
TOML
40 lines
758 B
TOML
[project]
|
|
name = "swydd"
|
|
description = "swydd will yield desired deliverables"
|
|
authors = [{ name = "Daylin Morgan", email = "daylinmorgan@gmail.com" }]
|
|
dependencies = []
|
|
requires-python = ">=3.9"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
dynamic = ["version"]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pre-commit>=3.6.2",
|
|
"mypy>=1.8.0",
|
|
"pytest>=8.3.2",
|
|
# docs
|
|
"sphinx",
|
|
"sphinx-autobuild",
|
|
"shibuya",
|
|
]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I"]
|
|
ignore = ["E402"]
|
|
|
|
[tool.pyright]
|
|
reportUnusedExpression = false
|
|
|
|
[tool.mypy]
|
|
check_untyped_defs = true
|
|
disallow_untyped_defs = true
|
|
warn_unused_configs = true
|
|
|
|
[tool.pdm.version]
|
|
source = "file"
|
|
path = "src/swydd/__init__.py"
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|