lego/packages/xml-to-html/setup.py
2019-09-02 18:43:04 +02:00

17 lines
380 B
Python

from setuptools import setup
setup(
name='lektor-xml-to-html',
version='0.1',
author=u'Hiro',
author_email='hiro@torproject.org',
url='https://github.com/torproject/lego',
license='GPL',
py_modules=['lektor_xml_to_html'],
entry_points={
'lektor.plugins': [
'xml-to-html = lektor_xml_to_html:XmlToHtmlPlugin',
]
}
)