2024-04-21 02:41:21 +00:00
|
|
|
[tool.poetry]
|
2024-04-22 03:10:04 +00:00
|
|
|
name = "doodles"
|
2024-04-21 02:41:21 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-04-22 03:10:04 +00:00
|
|
|
python = "^3.10"
|
2024-04-21 02:41:21 +00:00
|
|
|
pygame = "^2.5.2"
|
2024-04-22 03:10:04 +00:00
|
|
|
typer = "^0.12.3"
|
2024-04-26 21:10:55 +00:00
|
|
|
mypy = "^1.10.0"
|
2024-04-26 21:49:06 +00:00
|
|
|
ruff = "^0.4.2"
|
2024-04-21 02:41:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2024-04-26 21:16:22 +00:00
|
|
|
|
2024-04-26 21:31:12 +00:00
|
|
|
[tool.mypy]
|
|
|
|
exclude = [
|
|
|
|
"src/doodles/examples/"
|
2024-04-26 21:16:22 +00:00
|
|
|
]
|