|
1 | 1 | import setuptools |
2 | 2 |
|
3 | | -with open('README.md') as readme_file: |
| 3 | +with open("README.md") as readme_file: |
4 | 4 | README = readme_file.read() |
5 | 5 |
|
6 | | -setuptools.setup(name='scrape_amazon', |
7 | | - version='0.1.4', |
8 | | - description='Scrape Amazon Reviews', |
9 | | - url='http://github.com/officialpm/scrape-amazon', |
10 | | - author='Parth Maniar', |
11 | | - author_email='officialparthmaniar@gmail.com', |
12 | | - license='MIT', |
13 | | - long_description_content_type="text/markdown", |
14 | | - long_description=README, |
15 | | - download_url="https://pypi.org/project/scrape-amazon", |
16 | | - packages=setuptools.find_packages(), |
17 | | - keywords=["Amazon", "Scrape", "Reviews", "Scraper", "Products"], |
18 | | - python_requires='>=3.6', |
19 | | - classifiers=[ |
20 | | - "Operating System :: OS Independent", |
21 | | - "Intended Audience :: Developers", |
22 | | - "Topic :: Utilities", |
23 | | - "Natural Language :: English", |
24 | | - "Programming Language :: Python :: 3", |
25 | | - "Programming Language :: Python :: 3.6", |
26 | | - "Programming Language :: Python :: 3.7", |
27 | | - "Programming Language :: Python :: 3.8", |
28 | | - "Programming Language :: Python :: 3 :: Only" |
29 | | - ], install_requires=['beautifulsoup4', 'pandas', 'p_tqdm', 'fake_useragent'], |
30 | | - entry_points={ |
31 | | - 'console_scripts': ['scrape-amazon=scrape_amazon.cli:get_reviews_cli'], |
32 | | - } |
33 | | - ) |
| 6 | +setuptools.setup( |
| 7 | + name="scrape_amazon", |
| 8 | + version="0.1.4", |
| 9 | + description="Scrape Amazon Reviews", |
| 10 | + url="http://github.com/officialpm/scrape-amazon", |
| 11 | + author="Parth Maniar", |
| 12 | + author_email="officialparthmaniar@gmail.com", |
| 13 | + license="MIT", |
| 14 | + long_description_content_type="text/markdown", |
| 15 | + long_description=README, |
| 16 | + download_url="https://pypi.org/project/scrape-amazon", |
| 17 | + packages=setuptools.find_packages(), |
| 18 | + keywords=["Amazon", "Scrape", "Reviews", "Scraper", "Products"], |
| 19 | + python_requires=">=3.6", |
| 20 | + classifiers=[ |
| 21 | + "Operating System :: OS Independent", |
| 22 | + "Intended Audience :: Developers", |
| 23 | + "Topic :: Utilities", |
| 24 | + "Natural Language :: English", |
| 25 | + "Programming Language :: Python :: 3", |
| 26 | + "Programming Language :: Python :: 3.6", |
| 27 | + "Programming Language :: Python :: 3.7", |
| 28 | + "Programming Language :: Python :: 3.8", |
| 29 | + "Programming Language :: Python :: 3 :: Only", |
| 30 | + ], |
| 31 | + install_requires=["beautifulsoup4", "pandas", "p_tqdm", "my_fake_useragent"], |
| 32 | + entry_points={ |
| 33 | + "console_scripts": ["scrape-amazon=scrape_amazon.cli:get_reviews_cli"], |
| 34 | + }, |
| 35 | +) |
0 commit comments