-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 884 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 884 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "all-url-uploader"
version = "3.0.0"
description = "Telegram bot that uploads direct links and yt-dlp supported media with aiogram."
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"aiogram>=3.21.0,<4",
"aiohttp>=3.14.1,<4",
"hachoir>=3.3.0,<4",
"python-dotenv>=1.0.1,<2",
"yt-dlp>=2026.6.9",
]
[dependency-groups]
dev = [
"pylint>=3.3.0,<4",
"pytest>=8.3.0,<9",
"pytest-asyncio>=0.24.0,<1",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.setuptools]
py-modules = [
"app",
"config",
]
[tool.setuptools.packages.find]
include = ["routers*", "services*", "utils*"]
[tool.autopep8]
max_line_length = 150
ignore = "E402,W503,C0116,C0114"
in-place = true
recursive = true
aggressive = 3