strompreis/pyproject.toml

30 lines
550 B
TOML

[project]
name = "strompreis-pipline"
version = "0.1.0"
description = "Strompreis Pipeline Workspace"
readme = "README.md"
requires-python = ">=3.11"
[tool.uv.workspace]
members = ["packages/*", "apps/*"]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "C90", "B"]
ignore = []
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.2",
"pytest-mock>=3.15.1",
"requests-mock>=1.12.1",
"ruff>=0.15.0",
]