Fix duplicated parameter

This commit is contained in:
Antonio J. Delgado 2023-11-01 10:47:32 +02:00
parent e06f7bb03a
commit eb636866e0
4 changed files with 9 additions and 7 deletions

View file

@ -1,8 +1,10 @@
== image_classifier
# image_classifier
Classifies images by their EXIF date (e.g. /path/YYYY.MM.DD/image.jpg).
## Description
= Install
Classifies images by their EXIF date (e.g. /path/YYYY.MM.DD/image.jpg) or date in filename.
apt install exiv2 cmake libexiv2-dev libboost-python-dev
## Install
apt install exiv2 cmake libexiv2-dev libboost-python-dev python3-py3exiv2
python3 setup.py install

View file

@ -422,7 +422,7 @@ for files in the provided --directory')
https://docs.python.org/3/library/datetime.html#strftime-strptime-behavior'
)
@click.option(
'--limit', '-l',
'--limit', '-L',
default=10,
help='Limit the number of files to process'
)

View file

@ -1,6 +1,6 @@
[metadata]
name = image_classifier
version = 0.0.15
version = 0.0.16
[options]
packages = image_classifier

View file

@ -9,7 +9,7 @@ if os.access(requirements_file, os.R_OK):
setuptools.setup(
scripts=['image_classifier/image_classifier.py'],
author="Antonio J. Delgado",
version='0.0.15',
version='0.0.16',
name='image_classifier',
author_email="antoniodelgado@susurrando.com",
url="",