diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..1f199cb --- /dev/null +++ b/setup.py @@ -0,0 +1,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'] + ) |
