mirror of
https://github.com/Xevion/phototag.git
synced 2025-12-07 18:07:45 -06:00
added and completed cli functionality for use
This commit is contained in:
16
setup.py
16
setup.py
@@ -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",
|
||||
],
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user