viv/pyproject.toml

53 lines
1009 B
TOML
Raw Normal View History

2022-12-20 13:28:48 -06:00
[build-system]
2023-08-05 16:22:01 -05:00
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "viv"
description = "viv isn't venv"
authors = [{ name = "Daylin Morgan", email = "daylinmorgan@gmail.com" }]
dependencies = []
2023-03-02 23:01:34 -06:00
requires-python = ">= 3.8"
readme = "README.md"
license = { text = "MIT" }
2022-12-20 13:28:48 -06:00
dynamic = ["version"]
2022-12-20 14:43:10 -06:00
[project.urls]
homepage = "https://github.com/daylinmorgan/viv"
repository = "https://github.com/daylinmorgan/viv"
[project.scripts]
viv = "viv:main"
2022-12-20 13:28:48 -06:00
[tool.pdm]
version = { source = "scm" }
2024-01-03 15:58:44 -06:00
# need python 3.9 for these which I usually have anyways
ignore_package_warnings = ["sphinx*", "myst-parser"]
2022-12-20 13:28:48 -06:00
[tool.pdm.dev-dependencies]
2023-03-02 23:01:34 -06:00
dev = [
"mypy>=0.991",
"astor>=0.8.1",
2023-08-10 11:02:05 -05:00
]
docs = [
2024-01-03 15:58:44 -06:00
"sphinx",
"sphinx-autobuild",
"sphinx-copybutton",
"myst-parser",
"shibuya",
"yartsu",
2023-03-02 23:01:34 -06:00
]
test = [
"pytest",
"sampleproject"
]
2023-03-08 03:29:34 -06:00
[tool.ruff]
2023-05-26 22:20:37 -05:00
select = ["E","F","I"]
2023-03-08 03:29:34 -06:00
ignore = ["E402"]
[tool.mypy]
check_untyped_defs = true
2023-03-16 13:52:55 -05:00
disallow_untyped_defs = true
2023-03-08 03:29:34 -06:00
warn_unused_configs = true