- Fixed scan functionality not showing output by ensuring JavaScript is properly injected - Added default hint text to scan results area - Added comprehensive debug console logging to help diagnose scan issues - Improved scan section injection logic - Updated version to 0.1.32 in all files Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
31 lines
683 B
TOML
31 lines
683 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "fichero-printer"
|
|
version = "0.1.32"
|
|
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",
|
|
"fastapi",
|
|
"uvicorn[standard]",
|
|
"python-multipart>=0.0.9",
|
|
]
|
|
|
|
[project.scripts]
|
|
fichero = "fichero.cli:main"
|
|
fichero-server = "fichero.api:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["fichero_printer"]
|
|
include = ["fichero*"] |