forked from denisneuf/python-amazon-ad-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
29 lines (27 loc) · 980 Bytes
/
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
[metadata]
name = python-amazon-ad-api
version = 0.5.3
author = Daniel Alvaro
author_email = denisneuf@hotmail.com
description = Python wrapper for the Amazon Advertising API
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/denisneuf/python-amazon-ad-api
project_urls =
Bug Tracker = https://github.com/denisneuf/python-amazon-ad-api/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[flake8]
max-line-length = 200
exclude =.git,__pycache__,docs/source/conf.py,build,dist,tests
ignore = I101,D100,D101,D102,D103,D104,D105,D107,D401,E203,I900,N802,N806,N812,W503,S311,S605,S607,ISC003,ISC001,T101,T000,F541,PL123
per-file-ignores = __init__.py:F401,F403
[mypy]
ignore_missing_imports = True
disallow_untyped_defs = True
check_untyped_defs = True
warn_redundant_casts = True
no_implicit_optional = True
strict_optional = True