epilogue/setup.py
Adrian Malacoda dc0191a04a Rudimentary support for building wiki archives. The content is dumped to html but the wikitext isn't parsed yet.
mwparserfromhell is used for parsing wikitext but it has no support for rendering to HTML so we'll have to build it manually.
2020-08-11 10:44:06 -05:00

18 lines
499 B
Python

#!/usr/bin/env python
from distutils.core import setup
setup(
name='Glitch City Labs - Epilogue',
version='0.0.1',
description='Tools for exporting and creating archives of Glitch City Labs data',
author='Adrian Kuschelyagi Malacoda',
packages=['epilogue'],
install_requires=['pysqlite3 >= 0.4.3', 'chevron >= 0.13.1', 'bbcode >= 1.1.0', 'mwparserfromhell >= 0.5.4'],
entry_points={
'console_scripts': [
'epilogue = epilogue:main'
]
}
)