summaryrefslogtreecommitdiff
path: root/web_interface/pyproject.toml
blob: 90b92eccf94762f181909a4975b7e3430c8154a6 (plain)
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
[project]
name = "drinks-machine"
version = "0.1.0"
dependencies = [
  "Django==5.2.9",
  "django-colorfield==0.14.0"
]
requires-python = ">=3.11.2"
authors = [
]
maintainers = [
]
description = "Webinterface for the drinks machine"
readme = "README.md"

[tool.setuptools]
py-modules = []

[project.optional-dependencies]
dev = [
]

prod = [
  "gunicorn==23.0.0"
]