generated from yt-dlp/yt-dlp-sample-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (34 loc) · 1.2 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "yt-dlp-fixupmtime"
version = "1.1.2"
description = "A yt-dlp postprocessor plugin to set the mtime of all files to a given datetime value by key"
requires-python = ">=3.9"
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["yt-dlp", "yt-dlp-plugins", "mtime", "upload-date", "date-modified"]
authors = [{ name = "bradenhilton" }]
classifiers = [
"Private :: Do Not Upload",
"Environment :: Console",
"Environment :: Plugins",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Video",
]
dependencies = ["yt-dlp>=2023.01.02"]
[dependency-groups]
dev = ["pytest>=8.3.4", "pytest-cov>=6.0.0", "ruff>=0.0.17"]
[tool.hatch.build.targets.wheel]
packages = ["yt_dlp_plugins"]
[tool.ruff]
extend = "ruff.toml"