diff --git a/Makefile b/Makefile index 53f3537..4f8e169 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ style: isort src tests flake8 src tests --max-line-length 88 -# test: -# pytest tests +test: + python -m pytest -s -vvv --cache-clear tests/ build: python setup.py sdist bdist_wheel diff --git a/setup.py b/setup.py index 9075d84..fa87232 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,7 @@ def _setup_long_description() -> Tuple[str, str]: package_dir={'': 'src'}, include_package_data=True, install_requires=[ + 'click', 'datasets', 'loguru', 'numpy',