summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2010-09-03 20:45:21 +0200
committerGuido Günther <agx@sigxcpu.org>2010-09-03 20:46:16 +0200
commit464122bdc49ac224fe3ed19c957489106af76a43 (patch)
tree5abf2dc66eabb6fc21ecebb8894350f2749c7fbf
parent740b51c530173acbbb4144faa79688682f70f361 (diff)
Add setup.py
-rw-r--r--setup.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..ef0b612
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,11 @@
+#!/usr/bin/python
+# vim: set fileencoding=utf-8 :
+
+from distutils.core import setup
+
+setup(name = "whatmaps",
+ author = 'Guido Günther',
+ author_email = 'agx@sigxcpu.org',
+ scripts = [ 'whatmaps' ]
+)
+