From 1186a66aba5ecb7f59214f0c07eef9a4a4662950 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Tue, 27 Jun 2023 14:03:35 +0300 Subject: [PATCH] Fix line too long --- setup.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ce2512a..cdb7883 100755 --- a/setup.py +++ b/setup.py @@ -13,9 +13,16 @@ setuptools.setup( name='image_classifier', author_email="antoniodelgado@susurrando.com", url="", - 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.""", + 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=["face-recognition", "face", "recognition", "classify", "images", "metadata"] + keywords=[ + "face-recognition", + "face", + "recognition", + "classify", + "images", + "metadata" + ] )