mirror of
https://github.com/Crocmagnon/advent-of-code.git
synced 2024-11-05 14:23:58 +01:00
24 lines
441 B
TOML
24 lines
441 B
TOML
[tool.poetry]
|
|
name = "advent-of-code"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
|
|
license = "MIT"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "3.8"
|
|
networkx = "^2.5"
|
|
pdbpp = "^0.10.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pre-commit = "^2.9.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
target-version = ['py38']
|
|
|
|
[tool.isort]
|
|
profile = "black"
|