#!/usr/bin/python from distutils.core import setup setup( name='python-tunnelhack', version='1.1', description="A python-based text adventure", long_description="""A text game wherein an intrepid college student braves the school's steam tunnels in search of a lost artifact.""", author='Aaron Gallagher', author_email='habnabit@gmail.com', url='http://www.habnabit.org/tunnelhack', packages=['th', 'th.data', 'th.regions'], package_data={'th': ['data/*.dat']}, scripts=['tunnelhack.py'], platforms=['any'], license='http://www.gnu.org/licenses/gpl-3.0.txt', )