1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 18:53:21 +01:00
gallery-dl/setup.py

51 lines
1.4 KiB
Python
Raw Normal View History

2015-03-27 18:26:09 +01:00
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="gallery_dl",
2015-04-16 02:57:36 +02:00
version="0.2",
2015-03-27 18:26:09 +01:00
description="gallery- and image downloader",
long_description="download image galleries from several image hosting platforms",
url="https://github.com/mikf/gallery-dl",
author="Mike Fährmann",
author_email="mike_faehrmann@web.de",
2015-04-16 02:57:36 +02:00
license="GPLv2",
install_requires=[
"requests >= 2.0",
],
scripts=[
"bin/gallery-dl",
],
entry_points={
'console_scripts': [
'gallery-dl = gallery_dl:main',
],
},
2015-03-27 18:26:09 +01:00
packages=[
"gallery_dl",
"gallery_dl.extractor",
"gallery_dl.downloader",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
2015-04-16 02:57:36 +02:00
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX",
2015-03-27 18:26:09 +01:00
"Programming Language :: Python :: 3",
2015-06-28 13:02:36 +02:00
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
2015-03-27 18:26:09 +01:00
"Programming Language :: Python :: 3 :: Only",
2015-06-28 13:02:36 +02:00
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
2015-03-27 18:26:09 +01:00
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
],
2015-10-03 14:51:13 +02:00
test_suite='test',
2015-03-27 18:26:09 +01:00
)