-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
52 lines (46 loc) · 1.1 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
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
(
/(
| venv
| _build
| buck-out
| build
| example
)/
)
'''
[tool.poetry]
name = "Prosto_sprosit_bot"
version = "0.1.0"
description = "Service bot for doctors in \"Prosto sprosit\" team."
readme = "README.md"
authors = [
"Yandex.Praktikum students of Python+ course, cohort №2",
]
license = "The MIT License"
homepage = "https://github.com/Studio-Yandex-Practicum/ask_nenaprasno_bot"
repository = "https://github.com/Studio-Yandex-Practicum/ask_nenaprasno_bot"
documentation = "https://github.com/Studio-Yandex-Practicum/ask_nenaprasno_bot"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
python-telegram-bot = "^20.0a4"
starlette = "^0.30.0"
uvicorn = "^0.18.2"
python-dotenv = "^0.20.0"
asgiref = "^3.5.2"
timezonefinder = "6.0.2"
dataclasses-json = "^0.5.7"
aiolimiter = "^1.0.0"
pydantic = "^1.10.2"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
virtualenv = "^20.15.1"
pylint = "^2.14.4"
pre-commit = "^2.19.0"
flake8 = "^4.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"