From 168724a7413907bee5d8939983237f330c5d76f0 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Mon, 31 Oct 2011 09:13:30 +0100 Subject: [PATCH] Added a distutils script. --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 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") -- 2.11.0