the-great-escape/setup.py

18 lines
398 B
Python
Raw Normal View History

#!/usr/bin/env python
from distutils.core import setup
setup(
name='The Great Escape',
version='0.0.1',
description='A forum scraping and migration tool.',
author='Adrian Malacoda',
packages=['tge', 'tge.scrapers'],
2016-11-27 13:01:20 -06:00
install_requires=['pyquery', 'python-dateutil', 'retrying'],
entry_points={
'console_scripts': [
'tge = tge:main'
]
}
)