build: configure Python development environment

This commit is contained in:
2026-07-30 16:45:36 +02:00
parent e6eb99556a
commit fa90a5c5de
9 changed files with 129 additions and 21 deletions
+15
View File
@@ -10,8 +10,23 @@ readme = "README.md"
requires-python = ">=3.11"
dependencies = []
[project.scripts]
javis = "javis.interface.cli:main"
[dependency-groups]
dev = [
"ruff>=0.12,<1",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "UP"]