qlprint/pyproject.toml

22 lines
439 B
TOML

[tool.poetry]
name = "qlprint"
version = "0.1.0"
description = "Printing tools for Brother QL-570 label printer"
authors = ["Tom Charnock <tom@charnock.fr>"]
readme = "README.md"
license = "MIT"
packages = [
{ include = "qlprint" }
]
[tool.poetry.scripts]
qlprint = "qlprint:qlprint"
[tool.poetry.dependencies]
python = "^3.10"
brother-ql = "^0.9.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"