You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gallery-dl/setup.py

59 lines
1.6 KiB

10 years ago
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import os.path
10 years ago
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
10 years ago
setup(
name="gallery_dl",
9 years ago
version="0.4.0",
10 years ago
description="gallery- and image downloader",
long_description=read("README.rst"),
10 years ago
url="https://github.com/mikf/gallery-dl",
9 years ago
download_url="https://github.com/mikf/gallery-dl/releases/latest",
10 years ago
author="Mike Fährmann",
author_email="mike_faehrmann@web.de",
10 years ago
license="GPLv2",
install_requires=[
"requests >= 2.4.2",
10 years ago
],
scripts=[
"bin/gallery-dl",
],
entry_points={
'console_scripts': [
'gallery-dl = gallery_dl:main',
],
},
10 years ago
packages=[
"gallery_dl",
"gallery_dl.extractor",
"gallery_dl.downloader",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
10 years ago
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX",
10 years ago
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
10 years ago
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
10 years ago
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
],
test_suite='test',
10 years ago
)