declare cvar folder
This commit is contained in:
parent
4fe97384e8
commit
b22f71e3a3
3 changed files with 3 additions and 3 deletions
|
@ -68,7 +68,7 @@ class image_classifier:
|
||||||
''' Process a file, find faces, add EXIF information and
|
''' Process a file, find faces, add EXIF information and
|
||||||
move it to the folder of the day'''
|
move it to the folder of the day'''
|
||||||
self._log.debug(f"Looking for faces in file '{file}'...")
|
self._log.debug(f"Looking for faces in file '{file}'...")
|
||||||
new_path = False
|
folder = False
|
||||||
dirname = os.path.dirname(os.path.realpath(file))
|
dirname = os.path.dirname(os.path.realpath(file))
|
||||||
filename = os.path.basename(file)
|
filename = os.path.basename(file)
|
||||||
if not os.access(file, os.R_OK):
|
if not os.access(file, os.R_OK):
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = image_classifier
|
name = image_classifier
|
||||||
version = 0.0.5
|
version = 0.0.6
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
packages = image_classifier
|
packages = image_classifier
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -9,7 +9,7 @@ if os.access(requirements_file, os.R_OK):
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
scripts=['image_classifier/image_classifier.py'],
|
scripts=['image_classifier/image_classifier.py'],
|
||||||
author="Antonio J. Delgado",
|
author="Antonio J. Delgado",
|
||||||
version='0.0.5',
|
version='0.0.6',
|
||||||
name='image_classifier',
|
name='image_classifier',
|
||||||
author_email="antoniodelgado@susurrando.com",
|
author_email="antoniodelgado@susurrando.com",
|
||||||
url="",
|
url="",
|
||||||
|
|
Loading…
Reference in a new issue