module wide black reformatting (probably a mistake)

This commit is contained in:
Xevion
2020-02-07 01:58:28 -06:00
parent 33dc480bb4
commit c77c6eb00b
8 changed files with 157 additions and 100 deletions

View File

@@ -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",