-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 1014 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
[project]
name = "flask-web-development"
version = "0.1.0"
description = "Course of book"
authors = [
{name = "Timur Berezin",email = "timur.livepart1@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"flask (>=3.1.0,<4.0.0)",
"flask-bootstrap (>=3.3.7.1,<4.0.0.0)",
"flask-moment (>=1.0.6,<2.0.0)",
"flask-wtf (>=1.2.2,<2.0.0)",
"flask-sqlalchemy (>=3.1.1,<4.0.0)",
"flask-migrate (>=4.1.0,<5.0.0)",
"flask-mail (>=0.10.0,<0.11.0)",
"python-dotenv (>=1.1.0,<2.0.0)",
"flask-login (>=0.6.3,<0.7.0)",
"email-validator (>=2.2.0,<3.0.0)",
"faker (>=37.3.0,<38.0.0)",
"flask-pagedown (>=0.4.0,<0.5.0)",
"markdown (>=3.8,<4.0)",
"bleach (>=6.2.0,<7.0.0)",
"flask-httpauth (>=4.8.0,<5.0.0)",
"httpie (>=3.2.4,<4.0.0)",
"coverage (>=7.8.2,<8.0.0)",
"selenium (>=4.33.0,<5.0.0)",
]
[tool.poetry]
package-mode = false
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"