diff --git a/pyproject.toml b/pyproject.toml index 7e4a30f5f4..17d7a29c4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,21 +36,22 @@ keywords = [ ] requires-python = ">=3.9" dependencies = [ + "h5py", "igor2", "matplotlib", "numpy", "pandas", "pySPM", + "pyfiglet", "pyyaml", "ruamel.yaml", "schema", "scikit-image", "scipy", "seaborn", + "snoop", "tifffile", "tqdm", - "pyfiglet", - "h5py" ] [project.optional-dependencies] diff --git a/topostats/__init__.py b/topostats/__init__.py index 736e6a4491..cc22745019 100644 --- a/topostats/__init__.py +++ b/topostats/__init__.py @@ -2,6 +2,7 @@ from importlib.metadata import version import matplotlib.pyplot as plt +import snoop from .logs.logs import setup_logger from .theme import Colormap @@ -13,3 +14,6 @@ plt.register_cmap(cmap=Colormap("nanoscope").get_cmap()) plt.register_cmap(cmap=Colormap("gwyddion").get_cmap()) + +# Disable snoop +snoop.install(enabled=False)