July 2020 (#2)

* wip

* Forked lektor-thumbnail-generator

* Post

Co-authored-by: Felipe M <fmartingr@Going-Merry.local>
This commit is contained in:
Felipe M 2020-08-02 21:33:34 +02:00 committed by GitHub
parent b7799aac92
commit 9709127df1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 258 additions and 1 deletions

View file

@ -0,0 +1,17 @@
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',
]
}
)