-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.12 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
[tool.poetry]
name = "aiogram-forms"
version = "1.1.1"
description = "Forms for aiogram"
authors = ["Ivan Borisenko <i.13g10n@icloud.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://13g10n.com/docs/aiogram-forms"
repository = "https://github.com/13g10n/aiogram-forms"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
keywords = ["aiogram", "telegram", "forms"]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
aiogram = "^3.0.0b5"
[tool.poetry.group.dev.dependencies]
coverage = "^7.0.1"
pylint = "^2.15.9"
pytest = "^7.2.0"
pytest-asyncio = "^0.20.3"
mypy = "^1.0.0"
babel = "^2.11.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
[tool.coverage.run]
omit = [
"tests/*"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:"
]
[tool.mypy]
strict = true