https://github.com/gboeing/osmnx
Raw File
Tip revision: 01ecad160d72c960e3700da61970f8f776abb01e authored by Geoff Boeing on 24 May 2023, 21:42:25 UTC
finalize change log for 1.3.1
Tip revision: 01ecad1
setup.cfg
[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
back to top