From a6e995c093de8aae2e91a0787281bb34c0b871eb Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Thu, 31 Jul 2025 01:22:01 -0400 Subject: New upstream version 1.30.2. --- setup.py | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 44acef9..c52d1d7 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def check_file(fname): VERSION = re.search( r'__version__\s*=\s*"([^"]+)"', read("gallery_dl/version.py"), -).group(1) +)[1] FILES = [ (path, [f for f in files if check_file(f)]) @@ -100,13 +100,21 @@ def build_setuptools(): maintainer="Mike Fährmann", maintainer_email="mike_faehrmann@web.de", license="GPLv2", - python_requires=">=3.4", + python_requires=">=3.8", install_requires=[ "requests>=2.11.0", ], extras_require={ "video": [ - "youtube-dl", + "yt-dlp", + ], + "extra": [ + "requests[socks]", + "yt-dlp[default]", + "pyyaml", + "toml; python_version < '3.11'", + "truststore; python_version >= '3.10'", + "secretstorage; sys_platform == 'linux'", ], }, entry_points={ @@ -127,10 +135,6 @@ def build_setuptools(): "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", -- cgit v1.2.3