-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
34 lines (33 loc) · 1.04 KB
/
setup.cfg
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
[metadata]
name = scrape_amazon
version = 0.2.0
description = Scrape Amazon Reviews smoothly.
license = MIT
author = Parth Maniar
author_email = [email protected]
url = https://github.com/officialpm/scrape-amazon
description-file = README.md
download_urls = https://pypi.org/project/scrape-amazon
project_urls =
Documentation = https://github.com/officialpm/scrape-amazon
Code = https://github.com/officialpm/scrape-amazon
Issue tracker = https://github.com/officialpm/scrape-amazon/issues
classifiers =
Operating System :: OS Independent
Intended Audience :: Developers
Topic :: Utilities
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
[mypy]
disallow_untyped_defs = True
disallow_untyped_calls = True
disallow_incomplete_defs = True
disallow_untyped_decorators = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
warn_unreachable = True
pretty = True