Commit | Line | Data |
---|---|---|
1 | #!/usr/bin/python | |
2 | ||
3 | from distutils.core import setup, Extension | |
4 | ||
5 | htlib = Extension("ashd.htlib", ["htp.c"], | |
6 | libraries = ["ht"], | |
7 | library_dirs = ["../lib/"], | |
8 | include_dirs = ["../lib/"]) | |
9 | ||
10 | setup(name = "ashd-py", | |
11 | version = "0.1", | |
12 | description = "Python module for handling ashd requests", | |
13 | author = "Fredrik Tolf", | |
14 | author_email = "fredrik@dolda2000.com", | |
15 | url = "http://www.dolda2000.com/~fredrik/ashd/", | |
16 | ext_modules = [htlib], | |
17 | packages = ["ashd"], | |
18 | license = "GPL-3") |