diff --git a/pyproject.toml b/pyproject.toml index 30c2cf2..3bd5311 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,5 +17,5 @@ show_error_codes = true strict_equality = true warn_redundant_casts = true warn_return_any = true -warn_unreachable = false +warn_unreachable = true warn_unused_configs = true diff --git a/requirements.txt b/requirements.txt index 0171bbf..b61b70b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ +loguru==0.6.0 matplotlib==3.6.2 opencv-python==4.6.0.66 -tensorflow==2.11.0 scipy==1.9.3 +tensorflow==2.11.0 diff --git a/requirements_dev.txt b/requirements_dev.txt index dc11eca..14597cb 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,5 +1,5 @@ flake8==6.0.0 mypy==0.991 -pytest==7.2.0 pytest-cov==4.0.0 +pytest==7.2.0 tox==3.27.1 diff --git a/setup.cfg b/setup.cfg index 5beea3d..ed9f7d5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,10 +11,11 @@ classifiers = [options] packages = detector install_requires = + loguru>=0.6.0 matplotlib>=3.6.2 opencv-python>=4.6.0.66 - tensorflow>=2.11.0 scipy>=1.9.3 + tensorflow>=2.11.0 python_requires = >=3.10 package_dir = =src @@ -24,8 +25,8 @@ zip_safe = no testing = flake8>=6.0.0 mypy>=0.991 - pytest>=7.2.0 pytest-cov>=4.0.0 + pytest>=7.2.0 tox>=3.27.1 [options.package_data]