~habnabit/tunnelhack/master

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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',
)