18 lines
470 B
Python
18 lines
470 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'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'epilogue = epilogue:main'
|
|
]
|
|
}
|
|
)
|