fmartingr.com/packages/lektor-thumbnail-generator/setup.py
Felipe Martin Garcia 9709127df1
July 2020 (#2)
* wip

* Forked lektor-thumbnail-generator

* Post

Co-authored-by: Felipe M <fmartingr@Going-Merry.local>
2020-08-02 21:33:34 +02:00

17 lines
No EOL
751 B
Python

from setuptools import setup
setup(
name='lektor-thumbnail-generator',
version='0.4.0',
author=u'Stavros Korokithakis,,,',
author_email='hi@stavros.io',
url='https://github.com/skorokithakis/lektor-thumbnail-generator/',
description="This plugin automatically generates thumbnails for any images in your Lektor content. The difference between this plugin and the `thumbnail` filter is that this is geared towards content, i.e. you don't need to have any references to the images in your templates at all.",
license='MIT',
py_modules=['lektor_thumbnail_generator'],
entry_points={
'lektor.plugins': [
'thumbnail-generator = lektor_thumbnail_generator:ThumbnailGeneratorPlugin',
]
}
)