-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
41 lines (37 loc) · 911 Bytes
/
pyproject.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[tool.poetry]
name = "beer-analytics"
version = "1.0"
description = "Beer Analytics website project"
authors = ["Christian Scheb <[email protected]>"]
package-mode = false
[tool.poetry.dependencies]
python = "~3.11"
Django = "^5.0"
django-environ = "^0.10"
django-meta = "^2.1"
kaleido = "0.2.1"
numpy = "^1.24.2"
pandas = "^2.2"
plotly = "^5.14.1"
pybeerxml = "^2.1.2"
requests = "^2.28.2"
scipy = "^1.10.1"
translitcodec = "^0.7.0"
lxml = "^4.9.2"
django-structlog = "^7"
mysqlclient = "^2.2.0"
google-api-python-client = "^2.108.0"
openai = "^1.0.1"
uvicorn = {extras = ["standard"], version = "^0.27.1"}
gunicorn = "^21.2.0"
elasticsearch = "^8.12.0"
elasticsearch-async = "^6.2.0"
[tool.poetry.dev-dependencies]
black = "^23.3.0"
[tool.black]
line-length = 120
target-version = ['py310']
include = '\.pyi?$'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"