summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 1f199cb0040b7de0ce1fea9325fe31008ed52676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3
from distutils.core import setup

setup(name='WEATBAG',
      version='1.0',
      description='Written by Everyone Altogether, The Big Adventure Game',
      author='Thomas Kluyver et al.',
      author_email='takowl@gmail.com',
      url='https://github.com/takluyver/weatbag',
      packages=['weatbag', 'weatbag.tiles'],
      scripts=['play-weatbag']
     )