forked from theonlyanil/amzpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.3 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.3 KB
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
from setuptools import setup, find_packages
setup(
name="amzpy",
version="0.2.2",
description="A lightweight Amazon scraper library.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Anil Sardiwal",
author_email="theonlyanil@gmail.com",
url="https://github.com/theonlyanil/amzpy",
packages=find_packages(),
license_files = ('LICENSE'),
install_requires=[
"curl_cffi>=0.5.7",
"beautifulsoup4>=4.11.0",
"lxml>=4.9.0",
"fake_useragent>=1.1.1",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
python_requires=">=3.6",
keywords="amazon, scraper, web-scraping, product-data, e-commerce, curl_cffi, anti-bot",
)