https://github.com/raphaelvallat/yasa
Raw File
Tip revision: 4d23501a77e16d878779250706f16df4f5eb6296 authored by Raphael Vallat on 18 August 2021, 03:37:20 UTC
Switch to 0.5.1 and added trained classifier to manifest
Tip revision: 4d23501
setup.cfg
[aliases]
test=pytest

[tool:pytest]
addopts = --showlocals --durations=10 --cov
markers =
    slow: mark a test as slow.
filterwarnings =
    ignore:the matrix subclass:PendingDeprecationWarning
testpaths =
    yasa/tests/

[flake8]
max-line-length = 100
ignore = N806, N803, D107, D200, D205, D400, D401, D412, W504
exclude =
    .git,
    __pycache__,
    docs,
    tests,
    __init__.py,
    plotting.py,
    examples,
    notebooks,
    setup.py,
statistics=True
back to top