30 lines
No EOL
471 B
TOML
30 lines
No EOL
471 B
TOML
[project]
|
|
name = "advent-of-code"
|
|
version = "2024.1.1"
|
|
|
|
dependencies = [
|
|
"numpy>=2.1.3,<3.0.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" |