# -*- coding: utf-8 -*- """ Initialize Plugin """ import ast import io import re from setuptools import setup, find_packages with io.open('README.md', 'rt', encoding="utf8") as f: readme = f.read() _description_re = re.compile(r'description\s+=\s+(?P.*)') with open('lektor_render_template.py', 'rb') as readfile: DESCRIPTION = str(ast.literal_eval(_description_re.search( readfile.read().decode('utf-8')).group(1))) setup( author='l3d', author_email='l3d@c3woc.de', description=DESCRIPTION, keywords='Lektor plugin', license='MIT', long_description=readme, long_description_content_type='text/markdown', name='lektor-render-template', packages=find_packages(), py_modules=['lektor_render_template'], url='https://git.l3d.ch/l3d/lektor-render-template.git', version='0.8', classifiers=[ 'Framework :: Lektor', 'Environment :: Plugins', ], entry_points={ 'lektor.plugins': [ 'render-template = lektor_render_template:RenderTemplatePlugin', ] }, install_requires=['scour'] )