Commit | Line | Data |
---|---|---|
173e0e9e FT |
1 | #!/usr/bin/python3 |
2 | ||
3 | from distutils.core import setup, Extension | |
4 | ||
5 | htlib = Extension("ashd.htlib", ["htp.c"], | |
6 | libraries = ["ht"]) | |
7 | ||
c8301b0b | 8 | setup(name = "ashd-py3", |
fc25a1d0 | 9 | version = "0.6", |
173e0e9e 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"], | |
0b6f220f | 16 | scripts = ["ashd-wsgi3", "scgi-wsgi3", "serve-ssi"], |
173e0e9e | 17 | license = "GPL-3") |