-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
42 lines (40 loc) · 1.31 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
import setuptools
with open("README.md", encoding="utf8") as readme_file:
README = readme_file.read()
setuptools.setup(
name="scrape_amazon",
version="0.2.0",
description="Scrape Amazon Reviews",
url="https://github.com/officialpm/scrape-amazon",
author="Parth Maniar",
author_email="[email protected]",
license="MIT",
long_description_content_type="text/markdown",
long_description=README,
download_url="https://pypi.org/project/scrape-amazon",
packages=setuptools.find_packages(),
keywords=["Amazon", "Scrape", "Reviews", "Scraper", "Products"],
python_requires=">=3.6",
classifiers=[
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
install_requires=[
"beautifulsoup4",
"pandas",
"p_tqdm",
"my_fake_useragent",
"requests",
"datefinder"
],
entry_points={
"console_scripts": ["scrape-amazon=scrape_amazon.cli:get_reviews_cli"],
},
)