-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
63 lines (61 loc) · 2.04 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
README = ''
with open('README.md', 'r', encoding='utf-8') as readme_file:
README = readme_file.read()
setup(
name='ecommerce-scraper-py',
description = 'Scrape ecommerce websites such as Amazon, eBay, Walmart, Home Depot, Google Shopping from a single module in Python🐍',
url='https://github.com/dimitryzub/ecommerce-scraper-py',
version='0.1.1',
license='MIT',
author='Artur Chukhrai',
author_email='[email protected]',
maintainer='Artur Chukhrai, Dmitiry Zub',
maintainer_email='[email protected], [email protected]',
long_description_content_type='text/markdown',
long_description=README,
include_package_data=True,
python_requires='>=3.8',
packages=find_packages(),
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Topic :: Internet',
'Natural Language :: English',
'Topic :: Utilities',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: MIT License"
],
keywords=[
'amazon',
'ebay',
'home depot',
'walmart',
'google shopping',
'serpapi',
'scraper',
'python',
'ecommerce',
'e-commerce',
'web scraping',
'python web scraping',
'google-search-results'
],
install_requires=[
'google-search-results>=2.4',
'selenium>=4.3',
'selectolax>=0.3',
'webdriver-manager>=3.8',
'selenium-stealth>=1.0'
],
project_urls={
'Documentation': 'https://github.com/dimitryzub/ecommerce-scraper-py',
'Source': 'https://github.com/dimitryzub/ecommerce-scraper-py',
'Tracker': 'https://github.com/dimitryzub/ecommerce-scraper-py/issues',
}
)