local-software-update/pyproject.toml

35 lines
No EOL
616 B
TOML

[project]
name = "Booker"
version = "0.1.0"
dependencies = [
"pydantic>=2.8.2,<3.0.0",
"pydantic-settings>=2.4.0,<3.0.0",
"pyyaml>=6.0,<7.0",
"pendulum>=3.0.0,<4.0.0",
"requests>=2.32.3,<3.0.0",
"typer>=0.12.5,<0.13.0"
]
[project.optional-dependencies]
dev = [
"black>=24.4.2,<25.0.0",
"isort>=5.13.2,<6.0.0",
"ruff>=0.5.4,<0.6.0",
"pytest>=8.3.1,<9.0.0",
"pytest-icdiff>=0.9,<1.0",
"pytest-sugar>=1.0.0,<2.0.0",
]
[tool.ruff]
line-length = 88
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
log_cli = 1
log_cli_level = "DEBUG"