summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2025-07-31 01:22:01 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2025-07-31 01:22:01 -0400
commita6e995c093de8aae2e91a0787281bb34c0b871eb (patch)
tree2d79821b05300d34d8871eb6c9662b359a2de85d /setup.py
parent7672a750cb74bf31e21d76aad2776367fd476155 (diff)
New upstream version 1.30.2.upstream/1.30.2
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py18
1 files changed, 11 insertions, 7 deletions
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",