From d22c20614e2cde8de6a01c12b62975ae28f8989e Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Wed, 8 Sep 2021 16:16:40 +0300 Subject: [PATCH] Increase version and add metadata --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 3f508f7..f6f6f2c 100755 --- a/setup.py +++ b/setup.py @@ -9,12 +9,12 @@ if os.access(requirements_file, os.R_OK): setuptools.setup( scripts=['image_classifier/image_classifier.py'], author="Antonio J. Delgado", - version='0.0.1', + version='0.0.2', name='image_classifier', - author_email="", + author_email="antoniodelgado@susurrando.com", url="", - description="", + description="Find faces in images and add the names as metadata to the images. Move images to a folder withe the structure YYYY/MM/DD.", license="GPLv3", install_requires=requirements, - #keywords=["my", "script", "does", "things"] + keywords=["face-recognition", "face", "recognition", "classify", "images", "metadata"] )