mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-21 18:22:30 +01:00
add setup.py
This commit is contained in:
parent
d13608e909
commit
6f75100ef3
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.py[cod]
|
||||
build/
|
36
setup.py
Normal file
36
setup.py
Normal file
@ -0,0 +1,36 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: UTF-8 -*-
|
||||
|
||||
try:
|
||||
from setuptools import setup
|
||||
except ImportError:
|
||||
from distutils.core import setup
|
||||
|
||||
setup(
|
||||
name="gallery_dl",
|
||||
version="0.1",
|
||||
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",
|
||||
packages=[
|
||||
"gallery_dl",
|
||||
"gallery_dl.extractor",
|
||||
"gallery_dl.downloader",
|
||||
],
|
||||
classifiers=[
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Environment :: Console",
|
||||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
|
||||
"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",
|
||||
],
|
||||
)
|
Loading…
Reference in New Issue
Block a user