forked from Studio-Yandex-Practicum/bmc_companion_bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (81 loc) · 1.95 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "bmc_companion_bot"
version = "0.1.0"
description = """ \
Telegram bot "Are you okey" \
for making an appointment with a psychologist \
"""
authors = [
"Denis <[email protected]>",
"Daniel <[email protected]>",
"Alexander <[email protected]>",
"Alexander <[email protected]>",
"Alexey <[email protected]>",
"Alexander <[email protected]>",
"Tanya <[email protected]>",
"Sergey <[email protected]>"
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv = "^0.21.0"
gunicorn = "^20.1.0"
loguru = "^0.6.0"
Flask = "^2.2.2"
flask-sqlalchemy = "^3.0.2"
Flask-Migrate = "^3.1.0"
redis = "^4.3.4"
pydantic = "^1.10.2"
Flask-Limiter = {extras = ["redis"], version = "^2.7.0"}
psycopg2-binary = "2.9.3"
flask-admin = "^1.6.0"
flask-pydantic = "^0.11.0"
flask-restful = "^0.3.9"
spectree = "^1.0.3"
httpx = "^0.23.1"
flask-rest-paginate = "^1.1.3"
caldav = "^0.11.0"
python-telegram-bot = "^20.0"
requests = "^2.28.2"
django = "^4.1.5"
django-split-settings = "^1.2.0"
djangorestframework = "^3.14.0"
python-decouple = "^3.7"
django-filter = "^22.1"
django-celery-beat = "^2.4.0"
celery = "^5.2.7"
[tool.poetry.group.lint.dependencies]
flake8 = "^5.0.4"
flake8-quotes = "^3.3.1"
pep8-naming = "^0.13.2"
flake8-broken-line = "^0.6.0"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
pre-commit = "^2.20.0"
django-debug-toolbar = "^3.8.1"
[tool.poetry.group.tests.dependencies]
pytest = "^7.2.0"
faker = "^15.3.4"
[tool.black]
line-length = 100
exclude = '''
/(
| migrations
)/
'''
[tool.isort]
line_length = 88
multi_line_output = 3
default_section = "THIRDPARTY"
skip = "venv/"
skip_glob = "**/migrations/*.py"
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
[tool.pytest.ini_options]
pythonpath = ["webapi/src", "bot/src"]
addopts = "-v -p no:warnings"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"