From db0edde8ade9d51f39be22ce6eb8e30982e5a712 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Sat, 14 Feb 2026 09:50:01 +0100 Subject: [PATCH] Update pyproject.toml --- pyproject.toml | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4287ca8..0315417 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1 +1,28 @@ -# \ No newline at end of file +[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", +] + +[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 = 100 + +[tool.ruff.lint] +select = ["E", "F", "I", "B"] # erreurs, pyflakes, imports, bugbear