File: setup.cfg

package info (click to toggle)
osmnx 1.2.3%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 728 kB
  • sloc: python: 3,795; sh: 73; makefile: 43
file content (26 lines) | stat: -rw-r--r-- 420 bytes parent folder | download
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
[flake8]

exclude = ./build/*
max_complexity = 15
max_line_length = 100

# select/ignore per black suggestions
select = C,E,F,W,B,B950
ignore = E203,E501,W503

per-file-ignores =
    ./setup.py:B950
    ./osmnx/__init__.py:F401,F403
    ./osmnx/_api.py:F401
    ./tests/test_osmnx.py:E402,F841

[isort]

force_single_line = True
line_length = 100
skip = test_osmnx.py

[pydocstyle]

add-select = D417
convention = numpy