-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpyproject.toml
44 lines (35 loc) · 859 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
35
36
37
38
39
40
41
42
[project]
name = "teletok"
version = "5.1.0"
description = "Telegram bot that will download a video by a TikTok url"
authors = [{ name = "Igor Popov", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
dependencies = [
"httpx==0.27.0",
"aiogram==3.4.1",
"beautifulsoup4==4.12.3",
]
[project.optional-dependencies]
dev = [
"black~=24.3.0",
"ruff~=0.3.5",
"mypy~=1.9.0",
]
[tool.black]
target-version = ['py311']
line-length = 100
[tool.mypy]
mypy_path = ["app"]
follow_imports = "silent"
strict = true
disallow_subclassing_any = false
disallow_any_generics = false
ignore_missing_imports = true
[tool.ruff]
line-length = 100
target-version = "py311"
src = ["app"]
lint.ignore = ["D", "S311", "ANN10", "RUF001", "RUF012", "FIX", "TD002", "TD003"]
lint.select = ["ALL"]