-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (38 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
46 lines (38 loc) · 860 Bytes
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
# pyproject.toml
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aiogram-docker-sample"
version = "0.1.0"
description = "Async Telegram bot using aiogram"
authors = [
{ name = "AlgorithmAlchemy" }
]
requires-python = "==3.9.*"
dependencies = [
"asyncio~=3.4.3",
"aiogram~=3.13.1",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
[tool.black]
line-length = 88
target-version = ['py39']
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.9"
strict = true
ignore_missing_imports = false
warn_unused_ignores = true
warn_redundant_casts = true
warn_unreachable = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
no_implicit_optional = true
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]