#!/usr/bin/env python3 # -*- coding: utf-8 -*- import re import sys import os.path import warnings def read(fname): path = os.path.join(os.path.dirname(__file__), fname) with open(path, encoding="utf-8") as file: return file.read() def check_file(fname): path = os.path.join(os.path.dirname(__file__), fname) if os.path.exists(path): return True warnings.warn( "Not including file '{}' since it is not present. " "Run 'make' to build all automatically generated files.".format(fname) ) return False # get version without importing the package VERSION = re.search( r'__version__\s*=\s*"([^"]+)"', read("gallery_dl/version.py"), ).group(1) FILES = [ (path, [f for f in files if check_file(f)]) for (path, files) in [ ("share/bash-completion/completions", ["data/completion/gallery-dl"]), ("share/zsh/site-functions" , ["data/completion/_gallery-dl"]), ("share/fish/vendor_completions.d" , ["data/completion/gallery-dl.fish"]), ("share/man/man1" , ["data/man/gallery-dl.1"]), ("share/man/man5" , ["data/man/gallery-dl.conf.5"]), ] ] PACKAGES = [ "gallery_dl", "gallery_dl.extractor", "gallery_dl.downloader", "gallery_dl.postprocessor", ] DESCRIPTION = ("Command-line program to download image galleries and " "collections from several image hosting sites") LONG_DESCRIPTION = read("README.rst").replace( "=2.11.0", ], extras_require={ "video": [ "youtube-dl", ], }, entry_points={ "console_scripts": [ "gallery-dl = gallery_dl:main", ], }, packages=PACKAGES, data_files=FILES, test_suite="test", keywords="image gallery downloader crawler scraper", classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Operating System :: OS Independent", "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", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP", "Topic :: Multimedia :: Graphics", "Topic :: Utilities", ], ) if "py2exe" in sys.argv: build_py2exe() else: build_setuptools()