mirror of
https://github.com/torproject/lego.git
synced 2024-11-23 09:39:44 +00:00
17 lines
380 B
Python
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',
|
|
]
|
|
}
|
|
)
|