-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (26 loc) · 1.02 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="amazon-product-details-scraper",
version="1.0.5",
description="Scrapes product details from Amazon product pages and also downloads the images",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ranjan-mohanty/amazon-product-details-scraper/blob/main/README.md",
author="Ranjan Mohanty",
author_email="ranjan@duck.com",
packages=find_packages(),
keywords="amazon, scraper",
entry_points={
"console_scripts": [
"amazon-scraper=amazon_product_details_scraper.app:main",
]
},
install_requires=["requests==2.32.3", "beautifulsoup4==4.12.3", "urllib3==2.2.2"],
project_urls={
"Source": "https://github.com/ranjan-mohanty/amazon-product-details-scraper",
},
)