-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 950 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
25
26
27
28
29
30
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='outscraper',
version='4.0.0',
description='Python bindings for the Outscraper API',
long_description=readme(),
classifiers = ['Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Utilities',
],
keywords='outscraper webscraper extractor google api maps search json scrape parser reviews google play amazon',
url='https://github.com/outscraper/outscraper-python',
author='Outscraper',
author_email='[email protected]',
license='MIT',
packages=['outscraper'],
install_requires=['requests'],
include_package_data=True,
zip_safe=False,
long_description_content_type='text/x-rst',
)