57 lines
1.6 KiB
TOML
57 lines
1.6 KiB
TOML
[project]
|
|
name = "littleprynter"
|
|
version = "0.1.0"
|
|
description = "A web interface and API to print on thermal printers"
|
|
authors = [
|
|
{name = "n07070",email = "contact@n07070.xyz"}
|
|
]
|
|
license = "AGPLv3"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"flask (>=3.1.3,<4.0.0)",
|
|
"numpy (>=2.3.4)",
|
|
"toml (>=0.10.2,<0.11.0)",
|
|
"flask-socketio (>=5.6.1,<6.0.0)",
|
|
"flask-limiter (>=4.1.1,<5.0.0)",
|
|
"gpiozero (>=2.0.1)",
|
|
"cryptography (>=48.0.0,<49.0.0)",
|
|
"pyusb (>=1.3.1,<2.0.0)",
|
|
"pyserial (>=3.5,<4.0)",
|
|
"qrcode (<9.0)",
|
|
"python-barcode (>=0.16.1)",
|
|
"setuptools (==81)",
|
|
"cffi (>=2.0.0,<3.0.0)",
|
|
"configobj (>=5.0.9,<6.0.0)",
|
|
"future (>=1.0.0,<2.0.0)",
|
|
"h11 (>=0.16.0,<0.17.0)",
|
|
"idna (>=3.15,<4.0)",
|
|
"itsdangerous (>=2.2.0,<3.0.0)",
|
|
"jinja2 (>=3.1.6,<4.0.0)",
|
|
"jsonpointer (>=3.1.1,<4.0.0)",
|
|
"jsonschema (>=4.26.0,<5.0.0)",
|
|
"limits (>=5.8.0,<6.0.0)",
|
|
"markupsafe (>=3.0.3,<4.0.0)",
|
|
"pillow (>=12.2.0,<13.0.0)",
|
|
"pycryptodomex (>=3.23.0,<4.0.0)",
|
|
"python-dateutil (>=2.9.0.post0,<3.0.0)",
|
|
"python-engineio (>=4.13.1,<5.0.0)",
|
|
"python-socketio (>=5.16.1,<6.0.0)",
|
|
"pyyaml (>=6.0.3,<7.0.0)",
|
|
"requests (>=2.34.2,<3.0.0)",
|
|
"python-escpos (>=3.1,<4.0)",
|
|
"pep8 (>=1.7.1,<2.0.0)",
|
|
"pylint (>=4.0.5,<5.0.0)",
|
|
"brother-ql-inventree (>=1.3,<2.0)",
|
|
]
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python-escpos = {allow-prereleases = true}
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|