From eaeef42f0c7103de20469b9496e1d2a4f07c77ca Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 5 Jan 2013 16:14:49 +0000 Subject: Add setup.py --- README.rst | 2 +- play-weatbag | 4 ++++ setup.py | 12 ++++++++++++ start.py | 4 ---- 4 files changed, 17 insertions(+), 5 deletions(-) create mode 100755 play-weatbag create mode 100644 setup.py delete mode 100644 start.py diff --git a/README.rst b/README.rst index 5617c47..720127f 100644 --- a/README.rst +++ b/README.rst @@ -3,4 +3,4 @@ WEATBAG Written by Everyone Altogether, The Big Adventure Game -To play, run ``python3 start.py``. Move around with commands like 'go s'. +To play, run ``python3 play-weatbag``. Move around with commands like 'go s'. diff --git a/play-weatbag b/play-weatbag new file mode 100755 index 0000000..dc36b82 --- /dev/null +++ b/play-weatbag @@ -0,0 +1,4 @@ +#!/usr/bin/python3 +from weatbag import main + +main() 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'] + ) diff --git a/start.py b/start.py deleted file mode 100644 index dc36b82..0000000 --- a/start.py +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/python3 -from weatbag import main - -main() -- cgit v1.3