-
Notifications
You must be signed in to change notification settings - Fork 99
/
setup.py
35 lines (32 loc) · 1.34 KB
/
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
31
32
33
34
35
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open('README.md', mode='r', encoding='utf-8') as fp:
README = fp.read()
setup(name='google_search_results',
version='2.4.2',
description='Scrape and search localized results from Google, Bing, Baidu, Yahoo, Yandex, Ebay, Homedepot, youtube at scale using SerpApi.com',
url='https://github.com/serpapi/google-search-results-python',
author='vikoky',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Natural Language :: English',
'Topic :: Utilities',
],
python_requires='>=3.5',
zip_safe=False,
include_package_data=True,
license="MIT",
install_requires = ["requests"],
packages=find_packages(),
keywords='scrape,serp,api,json,search,localized,rank,google,bing,baidu,yandex,yahoo,ebay,scale,datamining,training,machine,ml,youtube,naver,walmart,apple,store,app',
long_description=README,
long_description_content_type="text/markdown",
)