mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 14:37:21 +00:00
5fdd13006a
Ref: https://github.com/pyinstaller/pyinstaller/issues/8554 Authored by: bashonly, seproDev Co-authored-by: sepro <4618135+seproDev@users.noreply.github.com>
278 lines
6.1 KiB
TOML
278 lines
6.1 KiB
TOML
[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",
|
|
"setuptools",
|
|
"wheel",
|
|
]
|
|
dev = [
|
|
"pre-commit",
|
|
"yt-dlp[static-analysis]",
|
|
"yt-dlp[test]",
|
|
]
|
|
static-analysis = [
|
|
"autopep8~=2.0",
|
|
"ruff~=0.4.4",
|
|
]
|
|
test = [
|
|
"pytest~=8.1",
|
|
]
|
|
pyinstaller = [
|
|
"pyinstaller>=6.7.0", # for compat with setuptools>=70
|
|
]
|
|
py2exe = [
|
|
"py2exe>=0.12",
|
|
"requests==2.31.*",
|
|
]
|
|
|
|
[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>[^']+)'"
|
|
|
|
[tool.hatch.envs.default]
|
|
features = ["curl-cffi", "default"]
|
|
dependencies = ["pre-commit"]
|
|
path = ".venv"
|
|
installer = "uv"
|
|
|
|
[tool.hatch.envs.default.scripts]
|
|
setup = "pre-commit install --config .pre-commit-hatch.yaml"
|
|
yt-dlp = "python -Werror -Xdev -m yt_dlp {args}"
|
|
|
|
[tool.hatch.envs.hatch-static-analysis]
|
|
detached = true
|
|
features = ["static-analysis"]
|
|
dependencies = [] # override hatch ruff version
|
|
config-path = "pyproject.toml"
|
|
|
|
[tool.hatch.envs.hatch-static-analysis.scripts]
|
|
format-check = "autopep8 --diff {args:.}"
|
|
format-fix = "autopep8 --in-place {args:.}"
|
|
lint-check = "ruff check {args:.}"
|
|
lint-fix = "ruff check --fix {args:.}"
|
|
|
|
[tool.hatch.envs.hatch-test]
|
|
features = ["test"]
|
|
dependencies = [
|
|
"pytest-randomly~=3.15",
|
|
"pytest-rerunfailures~=14.0",
|
|
"pytest-xdist[psutil]~=3.5",
|
|
]
|
|
|
|
[tool.hatch.envs.hatch-test.scripts]
|
|
run = "python -m devscripts.run_tests {args}"
|
|
run-cov = "echo Code coverage not implemented && exit 1"
|
|
|
|
[[tool.hatch.envs.hatch-test.matrix]]
|
|
python = [
|
|
"3.8",
|
|
"3.9",
|
|
"3.10",
|
|
"3.11",
|
|
"3.12",
|
|
"pypy3.8",
|
|
"pypy3.9",
|
|
"pypy3.10",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
|
|
[tool.ruff.lint]
|
|
ignore = [
|
|
"E402", # module level import not at top of file
|
|
"E501", # line too long
|
|
"E731", # do not assign a lambda expression, use a def
|
|
"E741", # ambiguous variable name
|
|
]
|
|
select = [
|
|
"E", # pycodestyle errors
|
|
"W", # pycodestyle warnings
|
|
"F", # pyflakes
|
|
"I", # import order
|
|
]
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"devscripts/lazy_load_template.py" = ["F401"]
|
|
"!yt_dlp/extractor/**.py" = ["I"]
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = [
|
|
"bundle",
|
|
"devscripts",
|
|
"test",
|
|
]
|
|
relative-imports-order = "closest-to-furthest"
|
|
|
|
[tool.autopep8]
|
|
max_line_length = 120
|
|
recursive = true
|
|
exit-code = true
|
|
jobs = 0
|
|
select = [
|
|
"E101",
|
|
"E112",
|
|
"E113",
|
|
"E115",
|
|
"E116",
|
|
"E117",
|
|
"E121",
|
|
"E122",
|
|
"E123",
|
|
"E124",
|
|
"E125",
|
|
"E126",
|
|
"E127",
|
|
"E128",
|
|
"E129",
|
|
"E131",
|
|
"E201",
|
|
"E202",
|
|
"E203",
|
|
"E211",
|
|
"E221",
|
|
"E222",
|
|
"E223",
|
|
"E224",
|
|
"E225",
|
|
"E226",
|
|
"E227",
|
|
"E228",
|
|
"E231",
|
|
"E241",
|
|
"E242",
|
|
"E251",
|
|
"E252",
|
|
"E261",
|
|
"E262",
|
|
"E265",
|
|
"E266",
|
|
"E271",
|
|
"E272",
|
|
"E273",
|
|
"E274",
|
|
"E275",
|
|
"E301",
|
|
"E302",
|
|
"E303",
|
|
"E304",
|
|
"E305",
|
|
"E306",
|
|
"E502",
|
|
"E701",
|
|
"E702",
|
|
"E704",
|
|
"W391",
|
|
"W504",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-ra -v --strict-markers"
|
|
markers = [
|
|
"download",
|
|
]
|