-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.cfg
83 lines (76 loc) · 2.12 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[metadata]
name = mode
version = attr: mode.__version__
author = attr: mode.__author__
author_email = attr: mode.__contact__
url = attr: mode.__homepage__
description = attr: mode.__doc__
long_description = file: README.rst
keywords = asyncio, service, bootsteps, graph, coroutine
license = BSD 3-Clause License
license_file = LICENSE
classifiers =
Framework :: AsyncIO
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Operating System :: POSIX
Operating System :: Microsoft :: Windows
Operating System :: MacOS :: MacOS X
Operating System :: Unix
Environment :: No Input/Output (Daemon)
Intended Audience :: Developers
[options]
zip_safe = False
include_package_data = True
packages = find:
[tool:pytest]
minversion=2.8
testpaths = t/unit t/functional
python_classes = test_*
[wheel]
universal = 1
[flake8]
# classes can be lowercase, arguments and variables can be uppercase
# whenever it makes the code more readable.
ignore = N806, N802, N801, N803, I100, I201, I202, B008, W504, G200
inline-quotes = single
multiline-quotes = '''
docstring-quotes = """
enable-extensions = G
#[pep257]
#ignore = D102,D104,D203,D105,D213
[pydocstyle]
ignore = D102,D104,D105,D107,D203,D213,D406,D407,D413
[mypy]
# --strict but not --implicit-optional
python_version = 3.6
cache_fine_grained = True
check_untyped_defs = True
disallow_any_decorated = False
disallow_any_expr = False
disallow_any_generics = False
disallow_any_unimported = True
disallow_incomplete_defs = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_decorators = True
disallow_untyped_defs = True
follow_imports = normal
ignore_missing_imports = True
implicit_reexport = False
no_implicit_optional = False
pretty = True
show_column_numbers = True
show_error_codes = True
show_error_context = True
strict_equality = True
strict_optional = True
warn_incomplete_stub = True
warn_no_return = True
warn_redundant_casts = True
warn_return_any = True
warn_unreachable = True
warn_unused_configs = True
warn_unused_ignores = True