start bottle project and dev environment

This commit is contained in:
fleaz 2024-10-16 20:53:38 +02:00
parent 0cdf33f26f
commit 60e79f06e3
5 changed files with 69 additions and 0 deletions

18
pyproject.toml Normal file
View file

@ -0,0 +1,18 @@
[tool.poetry]
name = "shippinglabel-converter"
version = "0.0.1"
description = "Convert different shipping label PDFs"
authors = ["fleaz <mail@felixbreidenstein.de>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
bottle = "^0.13.2"
pypdf = "^5.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"