Files
SDSAT/pyproject.toml
Hubert Cornet 001ff7a543
All checks were successful
CI / test (push) Successful in 16s
Update pyproject.toml
2026-02-14 10:39:53 +01:00

30 lines
506 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "sdsat"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"requests>=2.31.0",
"netifaces>=0.11.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.5.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
target-version = "py311"
line-length = 256
[tool.ruff.lint]
select = ["E", "F", "I", "B"] # erreurs, pyflakes, imports, bugbear