clan-core/checks/lib/container-driver/pyproject.toml

31 lines
612 B
TOML
Raw Normal View History

2023-10-14 13:54:56 +00:00
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nixos-test-driver"
version = "0.0.0"
[project.scripts]
nixos-test-driver = "test_driver:main"
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
test_driver = ["py.typed"]
[tool.ruff]
2023-11-29 11:38:00 +00:00
target-version = "py311"
2023-10-14 13:54:56 +00:00
line-length = 88
2024-03-03 05:19:55 +00:00
lint.select = [ "E", "F", "I", "U", "N", "RUF", "ANN", "A" ]
lint.ignore = ["E501", "ANN101", "ANN401", "A003"]
2023-10-14 13:54:56 +00:00
[tool.mypy]
2023-11-29 11:38:00 +00:00
python_version = "3.11"
2023-10-14 13:54:56 +00:00
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
no_implicit_optional = true