1
0
Fork 0

Initialize poetry in the project

python3
vibe 2023-11-07 01:47:57 +01:00
parent f8a294058f
commit b366bb265b
1 changed files with 18 additions and 0 deletions

18
pyproject.toml Normal file
View File

@ -0,0 +1,18 @@
[tool.poetry]
name = "labelmaker"
version = "0.1.0"
description = "Web interface for accessing label printers available at hswaw"
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
flask = "^3.0.0"
cairocffi = "^1.6.1"
pangocffi = "^0.12.0"
pangocairocffi = "^0.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"