mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
Attempt at a harness
This commit is contained in:
22
2024/pyproject.toml
Normal file
22
2024/pyproject.toml
Normal 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
|
||||
Reference in New Issue
Block a user