This commit is contained in:
paul2212
2026-03-16 12:43:26 +01:00
parent eee58431ab
commit 7843a38407
12 changed files with 70 additions and 1739 deletions

View File

@@ -1,28 +1,31 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fichero-printer"
version = "0.1.20"
description = "Fichero D11s thermal label printer - BLE CLI tool"
version = "0.1.23"
description = "Web GUI, Python CLI, and protocol documentation for the Fichero D11s thermal label printer."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "0xMH"},
{name = "Paul Kozber"},
]
dependencies = [
"bleak",
"numpy",
"pillow",
]
[project.optional-dependencies]
api = [
"fastapi>=0.111",
"uvicorn[standard]>=0.29",
"Pillow",
"fastapi",
"uvicorn[standard]",
"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"
[tool.setuptools.packages.find]
where = ["."]
include = ["fichero*"]