July 2020 (#2)
* wip * Forked lektor-thumbnail-generator * Post Co-authored-by: Felipe M <fmartingr@Going-Merry.local>
This commit is contained in:
parent
b7799aac92
commit
9709127df1
8 changed files with 258 additions and 1 deletions
17
packages/lektor-thumbnail-generator/setup.py
Normal file
17
packages/lektor-thumbnail-generator/setup.py
Normal 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',
|
||||
]
|
||||
}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue