Added a distutils script.
authorFredrik Tolf <fredrik@dolda2000.com>
Mon, 31 Oct 2011 08:13:30 +0000 (09:13 +0100)
committerFredrik Tolf <fredrik@dolda2000.com>
Mon, 31 Oct 2011 08:13:30 +0000 (09:13 +0100)
setup.py [new file with mode: 0755]

diff --git a/setup.py b/setup.py
new file mode 100755 (executable)
index 0000000..2b4c902
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,11 @@
+#!/usr/bin/python
+
+from distutils.core import setup, Extension
+
+setup(name = "wrw",
+      version = "0.1",
+      description = "Simple WSGI request wrapper library",
+      author = "Fredrik Tolf",
+      author_email = "fredrik@dolda2000.com",
+      packages = ["wrw"],
+      license = "GPL-3")