30 lines
506 B
TOML
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
|