21 lines
365 B
TOML
21 lines
365 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "beaky"
|
|
version = "0.0.1"
|
|
description = "Scan tickets and decide"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pillow==12.1.1"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=9.0.2",
|
|
"ruff==0.15.5",
|
|
]
|
|
|
|
[project.scripts]
|
|
beaky = "beaky.cli:main" |