advent-of-code/pyproject.toml

26 lines
465 B
TOML
Raw Normal View History

2020-12-02 08:58:58 +01:00
[tool.poetry]
name = "advent-of-code"
version = "0.1.0"
description = ""
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
license = "MIT"
[tool.poetry.dependencies]
2021-12-04 10:55:01 +01:00
python = "^3.10"
2022-12-02 13:23:09 +01:00
networkx = ">=2.5"
pdbpp = ">=0.10.2"
2020-12-02 08:58:58 +01:00
[tool.poetry.dev-dependencies]
2022-12-02 13:23:09 +01:00
pre-commit = ">=2.9.2"
pytest = ">=6.1.2"
2020-12-02 08:58:58 +01:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py38']
[tool.isort]
profile = "black"