X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=python3%2Fsetup.py;fp=python3%2Fsetup.py;h=4fdef01b5e2b4aedc9856a0227c23a932f5ec6ea;hp=0000000000000000000000000000000000000000;hb=173e0e9efec5ae690cc157fe238113fcd814895e;hpb=188cd02daf85ef68a832deab4fcbf0daaf2d4573 diff --git a/python3/setup.py b/python3/setup.py new file mode 100755 index 0000000..4fdef01 --- /dev/null +++ b/python3/setup.py @@ -0,0 +1,17 @@ +#!/usr/bin/python3 + +from distutils.core import setup, Extension + +htlib = Extension("ashd.htlib", ["htp.c"], + libraries = ["ht"]) + +setup(name = "ashd-py", + version = "0.4", + 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"], + scripts = ["ashd-wsgi3", "scgi-wsgi3"], + license = "GPL-3")