summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2013-01-05 16:14:49 +0000
committerThomas Kluyver <takowl@gmail.com>2013-01-05 16:14:49 +0000
commiteaeef42f0c7103de20469b9496e1d2a4f07c77ca (patch)
tree870304e6dac1703cedda22d1119d2d9d2ec3ee5a
parentf89cde0eb4f11d525acdaa2bb0edbe8c48117dc3 (diff)
Add setup.py
-rw-r--r--README.rst2
-rwxr-xr-x[-rw-r--r--]play-weatbag (renamed from start.py)0
-rw-r--r--setup.py12
3 files changed, 13 insertions, 1 deletions
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/start.py b/play-weatbag
index dc36b82..dc36b82 100644..100755
--- a/start.py
+++ b/play-weatbag
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']
+ )