-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (41 loc) · 1.18 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
[tool.poetry]
name = "duty_schedule_bot"
version = "0.2.1"
description = ""
authors = ["Ilya Sayakhov <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10.0"
apscheduler = "=3.7.0"
redis = "^3.4.1"
python-telegram-bot = {version = "^12.6.1", optional = true}
requests = {version = "^2.25.1", optional = true}
fastapi = {version = "^0.63.0", optional = true}
uvicorn = {extras = ["standard"], version = "^0.13.3", optional = true}
python-multipart = {version = "^0.0.5", optional = true}
[tool.poetry.dev-dependencies]
mypy = "^0.790"
pre-commit = "^1.16"
pylint = "^2.3"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
pytest-env = "^0.6.2"
pytest-faker = "^2.0.0"
pytest-mock = "^3.5.1"
pytest-factoryboy = "^2.1.0"
isort = "^5.10.1"
[tool.poetry.extras]
telegram = ["python-telegram-bot"]
slack = ["uvicorn", "python-multipart", "fastapi", "requests"]
[tool.black]
line-length = 119
[tool.isort]
line_length = 119
multi_line_output = 3
default_section = "THIRDPARTY"
known_first_party = "app"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
forced_separate = "tests"
skip_glob = "**/migrations/*.py"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"