2 requires = ["hatchling"]
3 build-backend = "hatchling.build"
8 {name = "pukkandan", email = "pukkandan.ytdlp@gmail.com"},
9 {name = "Grub4K", email = "contact@grub4k.xyz"},
10 {name = "bashonly", email = "bashonly@protonmail.com"},
11 {name = "coletdjnz", email = "coletdjnz@protonmail.com"},
13 description = "A feature-rich command-line audio/video downloader"
15 requires-python = ">=3.8"
24 license = {file = "LICENSE"}
26 "Topic :: Multimedia :: Video",
27 "Development Status :: 5 - Production/Stable",
28 "Environment :: Console",
29 "Programming Language :: Python",
30 "Programming Language :: Python :: 3 :: Only",
31 "Programming Language :: Python :: 3.8",
32 "Programming Language :: Python :: 3.9",
33 "Programming Language :: Python :: 3.10",
34 "Programming Language :: Python :: 3.11",
35 "Programming Language :: Python :: 3.12",
36 "Programming Language :: Python :: Implementation",
37 "Programming Language :: Python :: Implementation :: CPython",
38 "Programming Language :: Python :: Implementation :: PyPy",
39 "License :: OSI Approved :: The Unlicense (Unlicense)",
40 "Operating System :: OS Independent",
44 "brotli; implementation_name=='cpython'",
45 "brotlicffi; implementation_name!='cpython'",
49 "requests>=2.32.0,<3",
50 "urllib3>=1.26.17,<3",
54 [project.optional-dependencies]
56 curl-cffi = ["curl-cffi==0.5.10; implementation_name=='cpython'"]
73 "pyinstaller>=6.3; sys_platform!='darwin'",
74 "pyinstaller==5.13.2; sys_platform=='darwin'", # needed for curl_cffi
76 py2exe = ["py2exe>=0.12"]
79 Documentation = "https://github.com/yt-dlp/yt-dlp#readme"
80 Repository = "https://github.com/yt-dlp/yt-dlp"
81 Tracker = "https://github.com/yt-dlp/yt-dlp/issues"
82 Funding = "https://github.com/yt-dlp/yt-dlp/blob/master/Collaborators.md#collaborators"
85 yt-dlp = "yt_dlp:main"
87 [project.entry-points.pyinstaller40]
88 hook-dirs = "yt_dlp.__pyinstaller:get_hook_dirs"
90 [tool.hatch.build.targets.sdist]
95 "/.gitignore", # included by default, needed for auto-excludes
97 "/LICENSE", # included as license
98 "/pyproject.toml", # included by default
99 "/README.md", # included as readme
101 "/supportedsites.md",
104 "/yt_dlp/extractor/lazy_extractors.py",
106 "/AUTHORS", # included by default
111 [tool.hatch.build.targets.wheel]
112 packages = ["yt_dlp"]
113 artifacts = ["/yt_dlp/extractor/lazy_extractors.py"]
115 [tool.hatch.build.targets.wheel.shared-data]
116 "completions/bash/yt-dlp" = "share/bash-completion/completions/yt-dlp"
117 "completions/zsh/_yt-dlp" = "share/zsh/site-functions/_yt-dlp"
118 "completions/fish/yt-dlp.fish" = "share/fish/vendor_completions.d/yt-dlp.fish"
119 "README.txt" = "share/doc/yt_dlp/README.txt"
120 "yt-dlp.1" = "share/man/man1/yt-dlp.1"
123 path = "yt_dlp/version.py"
124 pattern = "_pkg_version = '(?P<version>[^']+)'"