fmartingr.com/packages/template-datetime/setup.py
Felipe Martin faf958c401 Added a custom package to inject datetime in templates
Modified blog pagination filter to show only posts which pubdate is
less or equal than today's date.
2016-12-20 10:08:40 +01:00

15 lines
371 B
Python

from setuptools import setup
setup(
name='lektor-template-datetime',
version='0.1',
author=u'Felipe Martin',
author_email='me@fmartingr.com',
license='MIT',
py_modules=['lektor_template_datetime'],
entry_points={
'lektor.plugins': [
'template-datetime = lektor_template_datetime:TemplateDatetimePlugin',
]
}
)