From: Fredrik Tolf Date: Mon, 31 Oct 2011 08:13:30 +0000 (+0100) Subject: Added a distutils script. X-Git-Url: http://dolda2000.com/gitweb/?p=wrw.git;a=commitdiff_plain;h=168724a7413907bee5d8939983237f330c5d76f0;hp=8204ad1dbc40518b46426f4c34f3d71736dc0e48 Added a distutils script. --- 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")