-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.2 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "metacognitive site"
version = "1.0"
description = "A website about metacognitive therapy"
authors = ["Ivan Zaycev"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
flask = "^3.0.3"
python-dotenv = "^1.0.1"
flask-sqlalchemy = "^3.1.1"
flask-migrate = "^4.0.7"
pytest = "^8.1.1"
flask-wtf = "^1.2.1"
phonenumbers = "^8.13.35"
email-validator = "^2.1.1"
flask-login = "^0.6.3"
google-auth = "^2.29.0"
google-auth-oauthlib = "^1.2.0"
requests = "^2.31.0"
pyopenssl = "^24.1.0"
itsdangerous = "^2.2.0"
flask-mailman = "^1.1.0"
setuptools = "^69.5.1"
flask-admin = "^1.6.1"
wtforms-alchemy = "^0.18.0"
pillow = "^10.3.0"
elasticsearch = "^8.14.0"
celery = "^5.4.0"
flask-ckeditor = {extras = ["all"], version = "^0.5.1"}
redis = "^5.0.6"
pip = "^24.1"
mimesis = "^17.0.0"
psycopg2-binary = "^2.9.9"
gunicorn = "^22.0.0"
flask-debugtoolbar = "^0.15.1"
flask-caching = "^2.3.0"
pytz = "^2024.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.10.0"
flake8 = "^7.1.0"
flake8-docstrings = "^1.7.0"
flake8-import-order = "^0.18.2"
ruff = "^0.4.9"
coverage = "^7.5.4"
flake8-quotes2 = "^0.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"