-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
24 lines (21 loc) · 905 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 os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), "r") as fh:
long_description = fh.read()
setup(name='google-search-results-serpwow',
version='1.1.11',
description='PIP package to scrape and parse Google, Bing, Yahoo, Yandex, Amazon, Ebay and Naver Search Results using SerpWow. Visit https://serpwow.com to get a free API key.',
url='https://github.com/serpwow/google-search-results-python',
author='SerpWow',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*',
install_requires = ["requests"],
packages=['serpwow'],
long_description=long_description,
long_description_content_type="text/markdown"
)