Add rudimentary script for generating the forum archive.
This commit is contained in:
17
setup.py
Normal file
17
setup.py
Normal 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'
|
||||
]
|
||||
}
|
||||
)
|
Reference in New Issue
Block a user