From d1e91faa3fc981f370811dda11911c5a8c55b08e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=9Eefik=20Serangil?= Date: Thu, 9 Apr 2020 16:10:16 +0300 Subject: [PATCH] matplotlib removed --- requirements.txt | 3 +-- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index f720fb7..8659883 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,8 @@ numpy>=1.14.0 pandas>=0.23.4 -matplotlib>=2.2.2 gdown>=3.10.1 tqdm>=4.30.0 Pillow>=5.2.0 opencv-python>=3.4.4 tensorflow>=1.9.0 -keras>=2.2.0 +keras>=2.2.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 96ff292..07b2633 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setuptools.setup( name="deepface", - version="0.0.14", + version="0.0.15", author="Sefik Ilkin Serengil", author_email="serengil@gmail.com", description="Deep Face Analysis Framework for Face Recognition and Demography", @@ -19,5 +19,5 @@ setuptools.setup( "Operating System :: OS Independent", ], python_requires='>=3.5.5', - install_requires=["numpy>=1.14.0", "pandas>=0.23.4", "tqdm>=4.30.0", "gdown>=3.10.1", "matplotlib>=2.2.2", "opencv-python>=3.4.4", "Pillow>=5.2.0", "tensorflow>=1.9.0", "keras>=2.2.0"] + install_requires=["numpy>=1.14.0", "pandas>=0.23.4", "tqdm>=4.30.0", "gdown>=3.10.1", "opencv-python>=3.4.4", "Pillow>=5.2.0", "tensorflow>=1.9.0", "keras>=2.2.0"] )