-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
24 lines (20 loc) · 846 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as readme_file:
README = readme_file.read()
setup_args = dict(
name='simple_image_download',
version='0.4',
description='Downloads raw page from google images and searches for images that can be downloaded',
long_description=README,
long_description_content_type='text/markdown',
license='MIT',
packages=find_packages(),
author='Jakub Dobies',
author_email='kuba.dobies@onet.pl',
keywords=['google images', 'image downloader'],
url='https://github.com/RiddlerQ/simple_image_download',
download_url='https://pypi.org/project/simple_image_download/'
)
install_requires = ['requests','python-magic-bin==0.4.14','progressbar']
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)