Merge branch 'master' into timeheap
[ashd.git] / python / setup.py
CommitLineData
173e0e9e 1#!/usr/bin/python
4942dacd
FT
2
3from distutils.core import setup, Extension
4
5htlib = Extension("ashd.htlib", ["htp.c"],
e8b7861a 6 libraries = ["ht"])
4942dacd
FT
7
8setup(name = "ashd-py",
fc25a1d0 9 version = "0.6",
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"],
0b6f220f 16 scripts = ["ashd-wsgi", "scgi-wsgi", "htredir"],
4942dacd 17 license = "GPL-3")