-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 974 Bytes
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 974 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
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "yotg-media-bot"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Panfilov, Maksim", email = "maks@panf.me" },
]
maintainers = [{ name = "Panfilov, Maksim", email = "maks@panf.me" }]
requires-python = ">=3.12"
dependencies = [
"aiogram>=3.22.0",
"pydantic>=2.6.0",
"pydantic-settings>=2.6.0",
"pyyaml>=6.0.0",
"yt-dlp>=2024.3.10",
"mutagen>=1.47.0",
"aiohttp>=3.10.11",
]
[dependency-groups]
dev = [
{ include-group = "lint" },
{ include-group = "test" },
]
test = [
"pytest>=8.4",
]
lint = [
"mypy>=1.18.2",
"ruff>=0.14.1",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.12"
strict = true
ignore_missing_imports = true
warn_unused_ignores = true
disallow_untyped_defs = true
exclude = [
"^test/",
"^tests/",
]