X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=python3%2Fsetup.py;h=6c6e16cd74098a5aef4418a4f5bbd8270ad51449;hp=049f93a0763232034ac4f6620d4b2beaf1b84ad2;hb=HEAD;hpb=cd71c7f3b692849c5a1134310040dcdd8b87bbf8 diff --git a/python3/setup.py b/python3/setup.py index 049f93a..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.5", + 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")