2017-10-29 20:42:13 +01:00
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
|
|
name = 'guetzli_recursively',
|
|
|
|
py_modules=['guetzli_recursively'],
|
2020-07-15 11:49:39 +02:00
|
|
|
version = '1.3.0',
|
2017-10-29 20:42:13 +01:00
|
|
|
description = 'Script in Python to convert all the jpeg of a folder recursively with Guetzli.',
|
|
|
|
author = 'Andros Fenollosa',
|
|
|
|
author_email = 'andros@fenollosa.email',
|
|
|
|
url = 'https://github.com/tanrax/guetzli-recursively',
|
|
|
|
keywords = ['guetzli', 'jpeg', 'recursive'],
|
|
|
|
classifiers = [],
|
|
|
|
install_requires=[
|
|
|
|
'Click>=6.7',
|
|
|
|
],
|
|
|
|
entry_points='''
|
|
|
|
[console_scripts]
|
|
|
|
guetzli_recursively=guetzli_recursively:run
|
|
|
|
'''
|
|
|
|
)
|