X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=python%2Fsetup.py;h=4fa00f5f0d113f76f9ed6427bb2014c20a49381f;hb=9158f8309871eb9bf44132f7da6d28100dea8ee2;hp=117ab3f6ce13b612058b767b5592093cd77b3fb2;hpb=4942dacd8281b9095468148b0df84af9e0aaaddc;p=ashd.git diff --git a/python/setup.py b/python/setup.py index 117ab3f..4fa00f5 100755 --- a/python/setup.py +++ b/python/setup.py @@ -3,16 +3,15 @@ from distutils.core import setup, Extension htlib = Extension("ashd.htlib", ["htp.c"], - libraries = ["ht"], - library_dirs = ["../lib/"], - include_dirs = ["../lib/"]) + libraries = ["ht"]) setup(name = "ashd-py", - version = "0.1", + version = "0.3", 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-wsgi", "scgi-wsgi", "serve-ssi"], license = "GPL-3")