https://github.com/gboeing/osmnx
Raw File
Tip revision: d4a6900b30ccd87f179defd332f5854e53027f2d authored by Geoff Boeing on 16 June 2022, 02:38:53 UTC
version bump
Tip revision: d4a6900
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