advent-of-code/pyproject.toml

29 lines
No EOL
445 B
TOML

[project]
name = "advent-of-code"
version = "2024.1.1"
dependencies = [
]
[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"