-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
95 lines (82 loc) · 1.65 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
84
85
86
87
88
89
90
91
92
93
94
95
[metadata]
name = better_crypto
[options]
install_requires =
requests
importlib-metadata; python_version > "3.7"
package_dir =
src=
packages = find:
include_package_data = True
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
cli-name = better_crypto.better_crypto:bot
[flake8]
exclude = .git, __pycache__, docs, old, build, dist
ignore = E203, E266, E501, W503
max-line-length = 80
max-complexity = 18
select = B, C, E, F, W, T4
[isort]
sections =
FUTURE,
STDLIB,
THIRDPARTY,
FIRSTPARTY,
LOCALFOLDER
default_section = LOCALFOLDER
known_third_party =
numpy,
pandas,
keras,
tensorflow,
sklearn,
matplotlib,
scipy
multi_line_output = 3
lines_after_imports = 2
include_trailing_comma = True
force_grid_wrap = 0
force_single_line = True
use_parentheses = True
ensure_newline_before_comments = True
line_length = 80
profile = black
float_to_top = True
[mypy]
files = src/better_crypto, tests
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
check_untyped_defs = false
disallow_incomplete_defs = true
disallow_untyped_defs = false
disallow_subclassing_any = false
strict_optional = false
no_implicit_optional = false
warn_no_return = true
warn_unreachable = true
[pylint.config]
[MASTER]
extension-pkg-whitelist =
numpy,
pandas,
keras,
tensorflow,
sklearn,
matplotlib,
scipy,
pytest_aiohttp
[MESSAGES CONTROL]
disable = R, C
enable = E, W
jobs = 1
confidence = HIGH
[FORMAT]
max-line-length = 80
max-module-lines = 2000
[tool:pytest]
testpaths = tests/
addopts = --cov=better_crypto --cov-config=.coveragerc --cov-fail-under=1