-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
39 lines (35 loc) · 968 Bytes
/
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
[tool.poetry]
name = "randomcoffeebottelegram"
version = "0.1.0"
description = "Project for communication between recruiters and itspecialists."
authors = ["Ярослав Андреев <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
django = "^4.2.5"
python-telegram-bot = {extras = ["job-queue"], version = "^20.6"}
django-asgi-lifespan = "^0.1.0"
uvicorn = "^0.23.2"
python-dotenv = "^1.0.0"
django-environ = "^0.11.2"
loguru = "^0.7.2"
pytest = "^7.4.2"
pytest-django = "^4.5.2"
pytest-asyncio = "^0.21.1"
asyncmock = "^0.4.2"
psycopg2-binary = "^2.9"
pytils = "^0.4.1"
redis = "^5.0.1"
django-material-admin = "^1.8.6"
django-controlcenter = "^0.3.2"
django-ckeditor = "^6.7.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.4.0"
ruff = "^0.0.290"
black = "^23.9.1"
isort = "^5.12.0"
factory-boy = "^3.3.0"
mypy = "^1.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"