2022-12-01 17:45:37 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "aoc"
|
|
|
|
version = "0.0.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
packages = [
|
|
|
|
{ include = "src" }
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.11"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
pytest = "^7.2.0"
|
2022-12-02 10:18:10 +01:00
|
|
|
black = "^22.10.0"
|
|
|
|
mypy = "^0.991"
|
|
|
|
|
2022-12-01 17:45:37 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|