generated from pythoninthegrasses/python_template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (23 loc) · 587 Bytes
/
pyproject.toml
File metadata and controls
26 lines (23 loc) · 587 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[tool.poetry]
name = "docker-101"
version = "0.1.0"
description = ""
authors = ["pythoninthegrass <4097471+pythoninthegrass@users.noreply.github.com>"]
readme = "README.md"
packages = [{include = "docker_101"}]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.100.0"
gunicorn = "^20.1.0"
uvicorn = "^0.21.1"
psycopg2-binary = "^2.9.6"
django = "^4.2.3"
[tool.poetry.group.dev.dependencies]
icecream = "^2.1.3"
PyQRCode = "^1.2.1"
rich = "^13.3.4"
pypng = "^0.20220715.0"
ipython = "^8.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"