3 from distutils.core import setup, Extension
5 htlib = Extension("ashd.htlib", ["htp.c"],
8 setup(name = "ashd-py3",
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],
16 scripts = ["ashd-wsgi3", "scgi-wsgi3", "serve-ssi"],