-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 885 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
[tool.poetry]
name = "mailru-im-command-bot"
version = "0.1.9"
description = "Tiny lib for icq/myteam command bots"
authors = ["Danila Fomin <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/dedefer/mailru-im-command-bot"
keywords = ["myteam", "icq", "bot", "command"]
classifiers = [
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.7"
mailru-im-bot = ">=0.0.18"
mypy-extensions = "^0.4.3"
typing-extensions = "^3.10.0"
[tool.poetry.dev-dependencies]
mypy = "^0.812"
flake8 = "^3.9.2"
isort = "^5.8.0"
coverage = "^5.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = 5
balanced_wrapping = true
include_trailing_comma = true