diff --git a/requirements.txt b/requirements.txt index 89ac6fc6..aad6a78a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -85,6 +85,7 @@ pytz==2022.7.1 pyzmq==25.0.0 requests==2.28.2 retry==0.9.2 +ruptures==1.1.8 scikit-learn==1.2.1 scipy==1.10.1 Send2Trash==1.8.0 diff --git a/setup.cfg b/setup.cfg index c24a4b5b..38fa6323 100644 --- a/setup.cfg +++ b/setup.cfg @@ -34,3 +34,6 @@ ignore_missing_imports = True [mypy-tabulate.*] ignore_missing_imports = True + +[mypy-ruptures.*] +ignore_missing_imports = True diff --git a/setup.py b/setup.py index 41b69c1b..ea21d027 100644 --- a/setup.py +++ b/setup.py @@ -32,6 +32,7 @@ REQUIREMENTS: dict = { 'psutil', 'python-dateutil', 'retry', + 'ruptures', 'scipy', 'scikit-learn', 'timezonefinder',