123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- [build-system]
- requires = ["hatchling"]
- build-backend = "hatchling.build"
- [project]
- name = "yt-dlp"
- maintainers = [
- {name = "pukkandan", email = "pukkandan.ytdlp@gmail.com"},
- {name = "Grub4K", email = "contact@grub4k.xyz"},
- {name = "bashonly", email = "bashonly@protonmail.com"},
- {name = "coletdjnz", email = "coletdjnz@protonmail.com"},
- ]
- description = "A feature-rich command-line audio/video downloader"
- readme = "README.md"
- requires-python = ">=3.8"
- keywords = [
- "youtube-dl",
- "video-downloader",
- "youtube-downloader",
- "sponsorblock",
- "youtube-dlc",
- "yt-dlp",
- ]
- license = {file = "LICENSE"}
- classifiers = [
- "Topic :: Multimedia :: Video",
- "Development Status :: 5 - Production/Stable",
- "Environment :: Console",
- "Programming Language :: Python",
- "Programming Language :: Python :: 3 :: Only",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- "Programming Language :: Python :: 3.11",
- "Programming Language :: Python :: 3.12",
- "Programming Language :: Python :: Implementation",
- "Programming Language :: Python :: Implementation :: CPython",
- "Programming Language :: Python :: Implementation :: PyPy",
- "License :: OSI Approved :: The Unlicense (Unlicense)",
- "Operating System :: OS Independent",
- ]
- dynamic = ["version"]
- dependencies = [
- "brotli; implementation_name=='cpython'",
- "brotlicffi; implementation_name!='cpython'",
- "certifi",
- "mutagen",
- "pycryptodomex",
- "requests>=2.31.0,<3",
- "urllib3>=1.26.17,<3",
- "websockets>=12.0",
- ]
- [project.optional-dependencies]
- default = []
- curl_cffi = ["curl-cffi==0.5.10; implementation_name=='cpython'"]
- secretstorage = [
- "cffi",
- "secretstorage",
- ]
- build = [
- "build",
- "hatchling",
- "pip",
- "wheel",
- ]
- dev = [
- "flake8",
- "isort",
- "pytest",
- ]
- pyinstaller = [
- "pyinstaller>=6.3; sys_platform!='darwin'",
- "pyinstaller==5.13.2; sys_platform=='darwin'", # needed for curl_cffi
- ]
- py2exe = ["py2exe>=0.12"]
- [project.urls]
- Documentation = "https://github.com/yt-dlp/yt-dlp#readme"
- Repository = "https://github.com/yt-dlp/yt-dlp"
- Tracker = "https://github.com/yt-dlp/yt-dlp/issues"
- Funding = "https://github.com/yt-dlp/yt-dlp/blob/master/Collaborators.md#collaborators"
- [project.scripts]
- yt-dlp = "yt_dlp:main"
- [project.entry-points.pyinstaller40]
- hook-dirs = "yt_dlp.__pyinstaller:get_hook_dirs"
- [tool.hatch.build.targets.sdist]
- include = [
- "/yt_dlp",
- "/devscripts",
- "/test",
- "/.gitignore", # included by default, needed for auto-excludes
- "/Changelog.md",
- "/LICENSE", # included as license
- "/pyproject.toml", # included by default
- "/README.md", # included as readme
- "/setup.cfg",
- "/supportedsites.md",
- ]
- artifacts = [
- "/yt_dlp/extractor/lazy_extractors.py",
- "/completions",
- "/AUTHORS", # included by default
- "/README.txt",
- "/yt-dlp.1",
- ]
- [tool.hatch.build.targets.wheel]
- packages = ["yt_dlp"]
- artifacts = ["/yt_dlp/extractor/lazy_extractors.py"]
- [tool.hatch.build.targets.wheel.shared-data]
- "completions/bash/yt-dlp" = "share/bash-completion/completions/yt-dlp"
- "completions/zsh/_yt-dlp" = "share/zsh/site-functions/_yt-dlp"
- "completions/fish/yt-dlp.fish" = "share/fish/vendor_completions.d/yt-dlp.fish"
- "README.txt" = "share/doc/yt_dlp/README.txt"
- "yt-dlp.1" = "share/man/man1/yt-dlp.1"
- [tool.hatch.version]
- path = "yt_dlp/version.py"
- pattern = "_pkg_version = '(?P<version>[^']+)'"
|