-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
56 lines (48 loc) · 1.13 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
[tool.poetry]
name = "spread-wings-bot"
version = "0.1.0"
description = "add later"
authors = ["add later"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11.1"
python-telegram-bot = "^20.3"
pydantic = {extras = ["email"], version = "^1.10.8"}
python-dotenv = "^1.0.0"
requests-cache = "^1.0.1"
attrs = "^23.1.0"
redis = "^4.5.5"
django = "^4.2.3"
uvicorn = "^0.23.0"
django-asgi-lifespan = "^0.1.0"
psycopg2-binary = "^2.9.6"
django-environ = "^0.10.0"
transliterate = "^1.10.2"
pytest-django = "^4.5.2"
pytest-asyncio = "^0.21.1"
flake8-docstrings = "^1.7.0"
django-ckeditor = "^6.7.0"
django-otp = "^1.2.2"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
isort = "^5.12.0"
pre-commit = "^3.3.1"
black = "^23.3.0"
pytest = "^7.3.1"
anyio = "^3.7.0"
pytest-tornasync = "^0.6.0.post2"
factory-boy = "^3.2.1"
tqdm = "^4.66.1"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings"
filterwarnings = [
"ignore::UserWarning",
]
addopts = "-vv -p no:cacheprovider -p no:warnings"
testpaths = [
"tests",
]
python_files = "test_*.py"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"