From 2f447416d209dea0e7e0a2f0d0e0a28dfaee697b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 16 Apr 2015 02:57:36 +0200 Subject: [PATCH] update setup.py --- gallery-dl => bin/gallery-dl | 0 setup.py | 23 ++++++++++++++++------- 2 files changed, 16 insertions(+), 7 deletions(-) rename gallery-dl => bin/gallery-dl (100%) diff --git a/gallery-dl b/bin/gallery-dl similarity index 100% rename from gallery-dl rename to bin/gallery-dl diff --git a/setup.py b/setup.py index f73fd344..c2a456c9 100644 --- a/setup.py +++ b/setup.py @@ -8,12 +8,24 @@ except ImportError: setup( name="gallery_dl", - version="0.1", + version="0.2", 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", + license="GPLv2", + install_requires=[ + "requests >= 2.0", + ], + scripts=[ + "bin/gallery-dl", + ], + entry_points={ + 'console_scripts': [ + 'gallery-dl = gallery_dl:main', + ], + }, packages=[ "gallery_dl", "gallery_dl.extractor", @@ -22,13 +34,10 @@ setup( classifiers=[ "Development Status :: 3 - Alpha", "Environment :: Console", - "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", + "Intended Audience :: End Users/Desktop", + "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", + "Operating System :: POSIX", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.0", - "Programming Language :: Python :: 3.1", - "Programming Language :: Python :: 3.2", - "Programming Language :: Python :: 3.3", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3 :: Only", "Topic :: Multimedia", "Topic :: Multimedia :: Graphics",