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.2,<3",
50 "urllib3>=1.26.17,<3",
54 [project.optional-dependencies]
57 "curl-cffi==0.5.10; os_name=='nt' and implementation_name=='cpython'",
58 "curl-cffi>=0.5.10,!=0.6.*,<0.8; os_name!='nt' and implementation_name=='cpython'",
73 "yt-dlp[static-analysis]",
84 "pyinstaller>=6.7.0", # for compat with setuptools>=70
91 Documentation = "https://github.com/yt-dlp/yt-dlp#readme"
92 Repository = "https://github.com/yt-dlp/yt-dlp"
93 Tracker = "https://github.com/yt-dlp/yt-dlp/issues"
94 Funding = "https://github.com/yt-dlp/yt-dlp/blob/master/Collaborators.md#collaborators"
97 yt-dlp = "yt_dlp:main"
99 [project.entry-points.pyinstaller40]
100 hook-dirs = "yt_dlp.__pyinstaller:get_hook_dirs"
102 [tool.hatch.build.targets.sdist]
107 "/.gitignore", # included by default, needed for auto-excludes
109 "/LICENSE", # included as license
110 "/pyproject.toml", # included by default
111 "/README.md", # included as readme
113 "/supportedsites.md",
116 "/yt_dlp/extractor/lazy_extractors.py",
118 "/AUTHORS", # included by default
123 [tool.hatch.build.targets.wheel]
124 packages = ["yt_dlp"]
125 artifacts = ["/yt_dlp/extractor/lazy_extractors.py"]
127 [tool.hatch.build.targets.wheel.shared-data]
128 "completions/bash/yt-dlp" = "share/bash-completion/completions/yt-dlp"
129 "completions/zsh/_yt-dlp" = "share/zsh/site-functions/_yt-dlp"
130 "completions/fish/yt-dlp.fish" = "share/fish/vendor_completions.d/yt-dlp.fish"
131 "README.txt" = "share/doc/yt_dlp/README.txt"
132 "yt-dlp.1" = "share/man/man1/yt-dlp.1"
135 path = "yt_dlp/version.py"
136 pattern = "_pkg_version = '(?P<version>[^']+)'"
138 [tool.hatch.envs.default]
139 features = ["curl-cffi", "default"]
140 dependencies = ["pre-commit"]
144 [tool.hatch.envs.default.scripts]
145 setup = "pre-commit install --config .pre-commit-hatch.yaml"
146 yt-dlp = "python -Werror -Xdev -m yt_dlp {args}"
148 [tool.hatch.envs.hatch-static-analysis]
150 features = ["static-analysis"]
151 dependencies = [] # override hatch ruff version
152 config-path = "pyproject.toml"
154 [tool.hatch.envs.hatch-static-analysis.scripts]
155 format-check = "autopep8 --diff {args:.}"
156 format-fix = "autopep8 --in-place {args:.}"
157 lint-check = "ruff check {args:.}"
158 lint-fix = "ruff check --fix {args:.}"
160 [tool.hatch.envs.hatch-test]
163 "pytest-randomly~=3.15",
164 "pytest-rerunfailures~=14.0",
165 "pytest-xdist[psutil]~=3.5",
168 [tool.hatch.envs.hatch-test.scripts]
169 run = "python -m devscripts.run_tests {args}"
170 run-cov = "echo Code coverage not implemented && exit 1"
172 [[tool.hatch.envs.hatch-test.matrix]]
189 "E402", # module-import-not-at-top-of-file
190 "E501", # line-too-long
191 "E731", # lambda-assignment
192 "E741", # ambiguous-variable-name
193 "UP036", # outdated-version-block
194 "B006", # mutable-argument-default
195 "B008", # function-call-in-default-argument
196 "B011", # assert-false
197 "B017", # assert-raises-exception
198 "B023", # function-uses-loop-variable (false positives)
199 "B028", # no-explicit-stacklevel
200 "B904", # raise-without-from-inside-except
201 "C401", # unnecessary-generator-set
202 "C402", # unnecessary-generator-dict
203 "PIE790", # unnecessary-placeholder
204 "SIM102", # collapsible-if
205 "SIM108", # if-else-block-instead-of-if-exp
206 "SIM112", # uncapitalized-environment-variables
207 "SIM113", # enumerate-for-loop
208 "SIM114", # if-with-same-arms
209 "SIM115", # open-file-with-context-handler
210 "SIM117", # multiple-with-statements
211 "SIM223", # expr-and-false
212 "SIM300", # yoda-conditions
213 "TD001", # invalid-todo-tag
214 "TD002", # missing-todo-author
215 "TD003", # missing-todo-link
216 "PLE0604", # invalid-all-object (false positives)
217 "PLE0643", # potential-index-error (false positives)
218 "PLW0603", # global-statement
219 "PLW1510", # subprocess-run-without-check
220 "PLW2901", # redefined-loop-name
221 "RUF001", # ambiguous-unicode-character-string
222 "RUF012", # mutable-class-default
223 "RUF100", # unused-noqa (flake8 has slightly different behavior)
226 "E", # pycodestyle Error
227 "W", # pycodestyle Warning
231 "N803", # invalid-argument-name
232 "N804", # invalid-first-argument-name-for-class-method
234 "B", # flake8-bugbear
235 "A", # flake8-builtins
236 "COM", # flake8-commas
237 "C4", # flake8-comprehensions
238 "FA", # flake8-future-annotations
239 "ISC", # flake8-implicit-str-concat
240 "ICN003", # banned-import-from
242 "T20", # flake8-print
243 "RSE", # flake8-raise
244 "RET504", # unnecessary-assign
245 "SIM", # flake8-simplify
246 "TID251", # banned-api
248 "PLC", # Pylint Convention
249 "PLE", # Pylint Error
250 "PLW", # Pylint Warning
251 "RUF", # Ruff-specific rules
254 [tool.ruff.lint.per-file-ignores]
255 "devscripts/lazy_load_template.py" = [
256 "F401", # unused-import
258 "!yt_dlp/extractor/**.py" = [
260 "ICN003", # banned-import-from
261 "T20", # flake8-print
262 "A002", # builtin-argument-shadowing
263 "C408", # unnecessary-collection-call
265 "yt_dlp/jsinterp.py" = [
266 "UP031", # printf-string-formatting
269 [tool.ruff.lint.isort]
270 known-first-party = [
275 relative-imports-order = "closest-to-furthest"
277 [tool.ruff.lint.flake8-quotes]
278 docstring-quotes = "double"
279 multiline-quotes = "single"
280 inline-quotes = "single"
283 [tool.ruff.lint.pep8-naming]
284 classmethod-decorators = [
285 "yt_dlp.utils.classproperty",
288 [tool.ruff.lint.flake8-import-conventions]
310 [tool.ruff.lint.flake8-tidy-imports.banned-api]
311 "yt_dlp.compat.compat_str".msg = "Use `str` instead."
312 "yt_dlp.compat.compat_b64decode".msg = "Use `base64.b64decode` instead."
313 "yt_dlp.compat.compat_urlparse".msg = "Use `urllib.parse` instead."
314 "yt_dlp.compat.compat_parse_qs".msg = "Use `urllib.parse.parse_qs` instead."
315 "yt_dlp.compat.compat_urllib_parse_unquote".msg = "Use `urllib.parse.unquote` instead."
316 "yt_dlp.compat.compat_urllib_parse_urlencode".msg = "Use `urllib.parse.urlencode` instead."
317 "yt_dlp.compat.compat_urllib_parse_urlparse".msg = "Use `urllib.parse.urlparse` instead."
318 "yt_dlp.compat.compat_shlex_quote".msg = "Use `yt_dlp.utils.shell_quote` instead."
319 "yt_dlp.utils.error_to_compat_str".msg = "Use `str` instead."
322 max_line_length = 120
383 [tool.pytest.ini_options]
384 addopts = "-ra -v --strict-markers"