simplified dockerfile

This commit is contained in:
Hubert Bryłkowski 2023-07-09 15:46:02 +02:00 committed by Piotr Gaczkowski
parent 19516d50fc
commit c721e4c909
3 changed files with 751 additions and 2 deletions

23
pyproject.toml Normal file
View file

@ -0,0 +1,23 @@
[tool.poetry]
name = "python-scratchpad"
version = "0.1.0"
description = ""
authors = ["Hubert Bryłkowski <hubert@brylkowski.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
brother-ql = {git = "https://github.com/archetipo/brother_ql"}
jinja2 = "^3.1.2"
pillow = "^9.5.0"
pysnmp = "^4.4.12"
python-telegram-bot = "^20.3"
fastapi = "^0.99.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"