X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=python%2Fsetup.py;fp=python%2Fsetup.py;h=117ab3f6ce13b612058b767b5592093cd77b3fb2;hb=4942dacd8281b9095468148b0df84af9e0aaaddc;hp=0000000000000000000000000000000000000000;hpb=bae2f7c3ea591799eb6e07556042cd7c244d2d1c;p=ashd.git diff --git a/python/setup.py b/python/setup.py new file mode 100755 index 0000000..117ab3f --- /dev/null +++ b/python/setup.py @@ -0,0 +1,18 @@ +#!/usr/bin/python + +from distutils.core import setup, Extension + +htlib = Extension("ashd.htlib", ["htp.c"], + libraries = ["ht"], + library_dirs = ["../lib/"], + include_dirs = ["../lib/"]) + +setup(name = "ashd-py", + version = "0.1", + description = "Python module for handling ashd requests", + author = "Fredrik Tolf", + author_email = "fredrik@dolda2000.com", + url = "http://www.dolda2000.com/~fredrik/ashd/", + ext_modules = [htlib], + packages = ["ashd"], + license = "GPL-3")