Allow parurl to append to URLs that already have a query-string.
[wrw.git] / setup.py
CommitLineData
9aebe126 1#!/usr/bin/python3
168724a7
FT
2
3from distutils.core import setup, Extension
4
5setup(name = "wrw",
6 version = "0.1",
7 description = "Simple WSGI request wrapper library",
8 author = "Fredrik Tolf",
9 author_email = "fredrik@dolda2000.com",
ff79cdbf 10 packages = ["wrw", "wrw.sp"],
7ebccced 11 package_data = {"wrw": ["makolib/*.mako"]},
168724a7 12 license = "GPL-3")