https://github.com/gboeing/osmnx
Raw File
Tip revision: 981ff1875bb9cc6c3575a87a1e42e59f5cc9f7d3 authored by Geoff Boeing on 01 May 2021, 19:55:28 UTC
Merge pull request #703 from gboeing/release
Tip revision: 981ff18
setup.cfg
[flake8]

max_line_length = 100
max_complexity = 15

exclude = ./build/*

# 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

[pydocstyle]

convention = numpy
add-select = D417

[isort]

force_single_line = True
line_length = 100
skip = test_osmnx.py
back to top