-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 739 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
from pathlib import Path
this_directory = Path(__file__).parent
README = (this_directory / "README.md").read_text()
setup(
name='GoogleImageScraper',
packages=find_packages(exclude=("tests")),
version='2.3.5',
description='This is a library for retrieving urls and downloading images from Google Images.',
url='https://github.com/commonkestrel/GoogleImageScraper',
author='Jibble',
license='MIT',
install_requires=['DynamicHtml'],
setup_requires=['pytest-runner'],
tests_require=['pytest==4.4.1'],
python_requires='>= 3.4',
test_suite='tests',
long_description=README,
long_description_content_type='text/markdown'
)