diff options
| author | 2025-07-31 01:22:07 -0400 | |
|---|---|---|
| committer | 2025-07-31 01:22:07 -0400 | |
| commit | d9539f96cc7ac112b7d8faad022190fbbc88c745 (patch) | |
| tree | 471249d60b9202c00d7d82abec8b296fc881292e /setup.py | |
| parent | 889fc15f272118bf277737b6fac29d3faeffc641 (diff) | |
| parent | a6e995c093de8aae2e91a0787281bb34c0b871eb (diff) | |
Update upstream source from tag 'upstream/1.30.2'
Update to upstream version '1.30.2'
with Debian dir f0dcd28a671f8600479182ff128e05ba8904a0d8
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -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", |
