Add rudimentary script for generating the forum archive.

This commit is contained in:
2020-08-10 01:21:33 -05:00
parent 7026bc2b34
commit f3b0319d5a
15 changed files with 295 additions and 1 deletions

17
setup.py Normal file
View File

@@ -0,0 +1,17 @@
#!/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'],
entry_points={
'console_scripts': [
'epilogue = epilogue:main'
]
}
)