22 lines
389 B
TOML
22 lines
389 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",
|
|
"pydantic==2.12.5"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=9.0.2",
|
|
"ruff==0.15.5",
|
|
]
|
|
|
|
[project.scripts]
|
|
beaky = "beaky.cli:main" |