-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (52 loc) · 1.2 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
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[versioneer]
VCS = git
style = pep440-dev
versionfile_source = lk_flow/_version.py
versionfile_build = lk_flow/_version.py
tag_prefix =
parentdir_prefix = lk_flow
[wheel]
universal = 1
[tool:pytest]
collect_ignore = ['setup.py']
[flake8]
# it's not a bug that we aren't using all of hacking, ignore:
ignore =
# S104 Possible binding to all interfaces.
S104,
# Black format conflict
W293, W503,
# ANN method annotations
ANN002, ANN003 ,ANN101, ANN102, ANN204,
# I100,I100,I202 Import statements
I,
# CFQ004 decorator can not Identify
CFQ004
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist,
logs,
tests,
*.pyc,
*.egg-info,
__init_*.py,
dags,
demo,
Crafts
*.proto
*_pb2.py
*_pb2_grpc.py
versioneer.py
_version.py
max-complexity = 10
max-line-length = 120
import-order-style = google