23 lines
489 B
TOML
23 lines
489 B
TOML
[project]
|
|
name = "custombingo"
|
|
version = "0.1.0"
|
|
description = "A Python application that generates customized BINGO cards from spreadsheet data"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pandas>=2.0.0",
|
|
"reportlab>=4.0.0",
|
|
"openpyxl>=3.1.0",
|
|
"click>=8.0.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
custombingo = "main:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|