safari-bingo-cards/pyproject.toml
2025-01-02 10:11:23 +03:00

31 lines
588 B
TOML

[project]
name = "safari-bingo-cards"
version = "0.1.0"
description = "Generate random wildlife bingo cards for safaris with data from Wikipedia."
authors = [
{ name = "Alan Orth", email = "alan.orth@gmail.com" }
]
license= { file = "LICENSE" }
dependencies = [
"colorama~=0.4.6",
"pandas~=2.2.2",
"requests~=2.32.3",
"pyvips~=2.2.3",
]
readme = "README.md"
requires-python = ">= 3.10"
[project.scripts]
generate = "safari_bingo_cards:main"
[tool.uv]
dev-dependencies = [
"isort~=5.13.2",
"ipython~=8.25.0",
]
[tool.isort]
profile = "black"
line_length=88