-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
47 lines (39 loc) · 1004 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[metadata]
name = pynamodb-mypy
version = 0.1.2
description = mypy plugin for PynamoDB
long_description = file: README.md
long_description_content_type = text/markdown
url = https://www.github.com/pynamodb/pynamodb-mypy
maintainer = Ilya Priven
maintainer_email = ilya.konstantinov@gmail.com
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
[options]
packages = find:
install_requires =
mypy>=0.940
python_requires = >=3.8
[options.packages.find]
exclude =
tests
[flake8]
format = pylint
exclude = .svc,CVS,.bzr,.hg,.git,__pycache__,venv
max-complexity = 20
extend-ignore = E203, E501
[tool:pytest]
addopts = --cov=pynamodb_mypy --cov-report=term-missing:skip-covered -vvv
[coverage:run]
branch = True
[coverage:report]
fail_under = 100
[mypy]
disallow_untyped_defs = True
ignore_missing_imports = True
strict_optional = True
warn_no_return = True
[mypy-tests.*]
disallow_untyped_defs = False