X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=python3%2Fsetup.py;h=6c6e16cd74098a5aef4418a4f5bbd8270ad51449;hp=f8924eb3934a88e28696fa1f2dc818433fcc8a91;hb=HEAD;hpb=c221b22d61df5882462eab41e5c79ae2a3ea9642 diff --git a/python3/setup.py b/python3/setup.py index f8924eb..6c6e16c 100755 --- a/python3/setup.py +++ b/python3/setup.py @@ -6,12 +6,12 @@ htlib = Extension("ashd.htlib", ["htp.c"], libraries = ["ht"]) setup(name = "ashd-py3", - version = "0.4", + version = "0.6", 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"], + scripts = ["ashd-wsgi3", "scgi-wsgi3", "serve-ssi"], license = "GPL-3")