23 lines
491 B
TOML
23 lines
491 B
TOML
[tool.poetry]
|
|
name = "aoc2023"
|
|
version = "0.1.0"
|
|
description = "Advent of Code 2023"
|
|
authors = ["Christoph Stahl <christoph.stahl@tu-dortmund.de>"]
|
|
readme = "README.md"
|
|
packages = [{include = "aoc"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
regex = "^2023.10.3"
|
|
types-regex = "^2023.10.3.0"
|
|
mypy = "^1.7.1"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
aoc = "aoc.aoc:main"
|
|
latest = "aoc.aoc:run_latest"
|
|
new = "aoc.aoc:new"
|