feat: Add Web iface with QR codes

This commit is contained in:
Piotr Gaczkowski 2026-03-24 14:27:32 +01:00
parent 3897d37f2a
commit 2a2b5973df
10 changed files with 1293 additions and 739 deletions

View file

@ -1,24 +1,33 @@
[tool.poetry]
[project]
name = "python-scratchpad"
version = "0.1.0"
description = ""
authors = ["Hubert Bryłkowski <hubert@brylkowski.com>"]
# authors = ["Hubert Bryłkowski <hubert@brylkowski.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
brother-ql = {git = "https://github.com/hbrylkowski/brother_ql"}
jinja2 = "^3.1.2"
pillow = "^9.5.0"
pysnmp = "^4.4.12"
pyasn1 = "0.4.8"
python-telegram-bot = "^20.3"
fastapi = "^0.99.1"
requires-python = ">=3.11"
dependencies = [
"brother-ql @ git+https://github.com/hbrylkowski/brother_ql@4225d13d209e8e4a2c17e87a75f42809e0da8fda",
"qrcode[pil]",
# https://github.com/astral-sh/uv/issues/6384
"setuptools<81",
"jinja2>=3.1.2,<4",
"pillow>=9.5.0,<10",
"pysnmp>=4.4.12,<5",
"pyasn1==0.4.8,<0.5",
"python-telegram-bot>=20.3,<21",
"fastapi[standard]>=0.114.0",
]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.3.0"
[tool.hatch]
metadata.allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["labeler"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
requires = ["hatchling"]
build-backend = "hatchling.build"