[READ-ONLY] Mirror of https://github.com/probablykasper/vidl. CLI for downloading video/audio pypi.org/project/vidl
audio cli downloader metadata package video
0

Configure Feed

Select the types of activity you want to include in your feed.

vidl / pyproject.toml
550 B 22 lines
1[tool.poetry] 2name = "vidl" 3version = "5.0.0" 4description = "Downloads video/audio from anywhere, adding thumbnails and mp3 metadata if applicable" 5authors = ["kasper.space"] 6readme = "README.md" 7repository = "https://github.com/kasper9n/vidl" 8keywords = ['youtube', 'download', 'video', 'audio', 'music'] 9 10[tool.poetry.dependencies] 11python = "^3.10" 12colorboy = "^1.0.3" 13mutagen = "^1.45.1" 14appdirs = "^1.4.4" 15yt-dlp = ">2026.0.0" 16yt-dlp-ejs = "^0.8.0" 17 18[tool.poetry.group.dev.dependencies] 19pylint = "*" 20 21[tool.poetry.scripts] 22vidl = 'vidl.run:main'