-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (43 loc) · 1.27 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
[tool.poetry]
name = "sobitie"
version = "0.1.0"
description = "sobitie_bot"
packages = [{include = "drf_sobitie"}]
authors = [
"Владислав Бойко", "Никита Цыбин", "Андрей Укладчиков",
"Екатерина Каричева", "Кирилл Резник",
"Даниил Паутов <[email protected]>", "Владимир Тихий",
"Вячеслав Роев", "Оксана Шеремет", "Сергей Разуваев",
"Варламов Антон"
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
python-dotenv = "^0.21.1"
python-telegram-bot = "^20.1"
emoji = "^2.2.0"
djangorestframework = "^3.14.0"
requests = "^2.28.2"
pillow = "^9.4.0"
drf-extra-fields = "^3.4.1"
flake8 = "^6.0.0"
isort = "^5.12.0"
fastapi = "^0.95.0"
uvicorn = {extras = ["standard"], version = "^0.21.1"}
vk-api = "^11.9.9"
django-scheduler = "^0.10.1"
apscheduler = "^3.10.1"
django-apscheduler = "^0.6.2"
daphne = "^4.0.0"
channels = "^4.0.0"
gunicorn = "^21.2.0"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
[tool.isort]
line_length = 120
extend_skip_glob = ["*/migrations/*"]
src_paths = ["src", "drf_sobitie"]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"