X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=python3%2Fsetup.py;h=79c30bb5d71f5a54ec4d37f0e4d8d65fa1718c87;hb=58ee5c4ab4ce9be692277b520de72735494bd9f7;hp=4fdef01b5e2b4aedc9856a0227c23a932f5ec6ea;hpb=173e0e9efec5ae690cc157fe238113fcd814895e;p=ashd.git diff --git a/python3/setup.py b/python3/setup.py index 4fdef01..79c30bb 100755 --- a/python3/setup.py +++ b/python3/setup.py @@ -5,13 +5,13 @@ from distutils.core import setup, Extension htlib = Extension("ashd.htlib", ["htp.c"], libraries = ["ht"]) -setup(name = "ashd-py", - version = "0.4", +setup(name = "ashd-py3", + version = "0.5", 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")