Fix duplicated parameter
This commit is contained in:
parent
e06f7bb03a
commit
eb636866e0
4 changed files with 9 additions and 7 deletions
10
README.md
10
README.md
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[metadata]
|
||||
name = image_classifier
|
||||
version = 0.0.15
|
||||
version = 0.0.16
|
||||
|
||||
[options]
|
||||
packages = image_classifier
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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="",
|
||||
|
|
Loading…
Reference in a new issue