Commit | Line | Data |
---|---|---|
173e0e9e | 1 | #!/usr/bin/python |
4942dacd FT |
2 | |
3 | from distutils.core import setup, Extension | |
4 | ||
5 | htlib = Extension("ashd.htlib", ["htp.c"], | |
e8b7861a | 6 | libraries = ["ht"]) |
4942dacd FT |
7 | |
8 | setup(name = "ashd-py", | |
1b7621b2 | 9 | version = "0.4", |
4942dacd FT |
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"], | |
173e0e9e | 16 | scripts = ["ashd-wsgi", "scgi-wsgi", "serve-ssi", "htredir"], |
4942dacd | 17 | license = "GPL-3") |