mirror of
https://github.com/Xevion/phototag.git
synced 2025-12-09 10:08:01 -06:00
module wide black reformatting (probably a mistake)
This commit is contained in:
24
setup.py
24
setup.py
@@ -4,20 +4,20 @@ import io
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
DEPENDENCIES = [
|
||||
'Click',
|
||||
'rawpy',
|
||||
'imageio',
|
||||
'progressbar2',
|
||||
'iptcinfo3',
|
||||
'google-api-python-client',
|
||||
'google-cloud',
|
||||
'google-cloud-vision',
|
||||
'Pillow'
|
||||
"Click",
|
||||
"rawpy",
|
||||
"imageio",
|
||||
"progressbar2",
|
||||
"iptcinfo3",
|
||||
"google-api-python-client",
|
||||
"google-cloud",
|
||||
"google-cloud-vision",
|
||||
"Pillow",
|
||||
]
|
||||
EXCLUDE_FROM_PACKAGES = []
|
||||
CURDIR = sys.path[0]
|
||||
|
||||
with open(os.path.join(CURDIR, 'README.md')) as file:
|
||||
with open(os.path.join(CURDIR, "README.md")) as file:
|
||||
README = file.read()
|
||||
|
||||
setup(
|
||||
@@ -33,10 +33,10 @@ setup(
|
||||
include_package_data=True,
|
||||
keywords=[],
|
||||
scripts=[],
|
||||
entry_points='''
|
||||
entry_points="""
|
||||
[console_scripts]
|
||||
phototag=phototag.cli:cli
|
||||
''',
|
||||
""",
|
||||
zip_safe=False,
|
||||
install_requires=DEPENDENCIES,
|
||||
python_requires=">=3.6",
|
||||
|
||||
Reference in New Issue
Block a user