Files
Fichero/pyproject.toml
paul2212 54ba6795c0
Some checks failed
Deploy to GitHub Pages / build (push) Has been cancelled
Deploy to GitHub Pages / deploy (push) Has been cancelled
Add add-on changelog and improve classic RFCOMM fallback (0.1.9)
2026-03-07 14:21:36 +01:00

29 lines
548 B
TOML

[project]
name = "fichero-printer"
version = "0.1.9"
description = "Fichero D11s thermal label printer - BLE CLI tool"
requires-python = ">=3.10"
dependencies = [
"bleak",
"numpy",
"pillow",
]
[project.optional-dependencies]
api = [
"fastapi>=0.111",
"uvicorn[standard]>=0.29",
"python-multipart>=0.0.9",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["fichero"]
[project.scripts]
fichero = "fichero.cli:main"
fichero-server = "fichero.api:main"