guetzli-recursively/setup.py
Andros Fenollosa 45e0655661
Update setup.py
2020-07-15 11:49:39 +02:00

20 lines
572 B
Python

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