-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 823 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "flaskmegatutorial"
version = "0.1.0"
description = ""
authors = ["voightp <vojtechpanek@seznam.cz>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
flask = "^2.3.3"
flask-wtf = "^1.1.1"
flask-sqlalchemy = "^3.0.5"
flask-migrate = "^4.0.4"
python-dotenv = "^1.0.0"
flask-login = "^0.6.2"
email-validator = "^2.0.0.post2"
flask-mail = "^0.9.1"
pyjwt = "^2.8.0"
flask-bootstrap = "^3.3.7.1"
flask-moment = "^1.0.5"
flask-babel = "^3.1.0"
langdetect = "^1.0.9"
requests = "^2.31.0"
elasticsearch = "^8.9.0"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
flake8 = "^6.1.0"
pre-commit = "^3.4.0"
pytest = "^7.4.2"
click = "^8.1.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"