doc: Documented htpipe.
[ashd.git] / python / setup.py
1 #!/usr/bin/python
2
3 from distutils.core import setup, Extension
4
5 htlib = Extension("ashd.htlib", ["htp.c"],
6                   libraries = ["ht"])
7
8 setup(name = "ashd-py",
9       version = "0.6",
10       description = "Python module for handling ashd requests",
11       author = "Fredrik Tolf",
12       author_email = "fredrik@dolda2000.com",
13       url = "http://www.dolda2000.com/~fredrik/ashd/",
14       ext_modules = [htlib],
15       packages = ["ashd"],
16       scripts = ["ashd-wsgi", "scgi-wsgi", "htredir"],
17       license = "GPL-3")