added and completed cli functionality for use

This commit is contained in:
Xevion
2019-11-03 17:17:35 -06:00
parent 822351652d
commit 90569c8f04
5 changed files with 39 additions and 31 deletions

View File

@@ -3,7 +3,17 @@ import os
import io
from setuptools import find_packages, setup
DEPENDENCIES = ['Click']
DEPENDENCIES = [
'Click',
'rawpy',
'imageio',
'progressbar2',
'iptcinfo3',
'google-api-python-client',
'google-cloud',
'google-cloud-vision',
'Pillow'
]
EXCLUDE_FROM_PACKAGES = []
CURDIR = sys.path[0]
@@ -25,7 +35,7 @@ setup(
scripts=[],
entry_points='''
[console_scripts]
phototag=phototag.phototag:cli
phototag=package.cli:cli
''',
zip_safe=False,
install_requires=DEPENDENCIES,
@@ -37,4 +47,4 @@ setup(
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)
)