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