guetzli-recursively/setup.py
Andros Fenollosa 13c4d2ff3f Add quality
2018-01-05 16:28:24 +01:00

20 lines
572 B
Python

from setuptools import setup
setup(
name = 'guetzli_recursively',
py_modules=['guetzli_recursively'],
version = '1.2.0',
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
'''
)