day 1 - part 2 - refactoring

This commit is contained in:
Stanislas Jouffroy 2024-12-02 16:21:56 +01:00
parent 5f492b3f66
commit eac54767b5
10 changed files with 5 additions and 5 deletions

29
pyproject.toml Normal file
View file

@ -0,0 +1,29 @@
[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"