Attempt at a harness

This commit is contained in:
2024-11-19 21:57:45 +01:00
parent 1f41f4b35a
commit b7244ad400
7 changed files with 265 additions and 0 deletions

22
2024/pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[project]
name = "aoc-2024"
version = "0.1.0"
description = "Advent of Code 2024 solutions programs"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"click>=8.1.7",
"numpy>=2.1.2",
]
[dependency-groups]
dev = [
"mypy>=1.13.0",
"ruff>=0.7.3",
]
[tool.ruff.lint]
select = ["F", "E", "I"]
[tool.mypy]
strict = true