X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=python%2Fsetup.py;h=dd1655ccba7aa54310111b66966d617c502582e7;hb=188cd02daf85ef68a832deab4fcbf0daaf2d4573;hp=8fbf0282b910ee32233c691a320f6d94eb2f795d;hpb=e8b7861ab2c1c92b79cdbf7a0acecfd6631c2934;p=ashd.git diff --git a/python/setup.py b/python/setup.py index 8fbf028..dd1655c 100755 --- a/python/setup.py +++ b/python/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 from distutils.core import setup, Extension @@ -6,11 +6,12 @@ htlib = Extension("ashd.htlib", ["htp.c"], libraries = ["ht"]) setup(name = "ashd-py", - version = "0.1", + 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", "serve-ssi", "htredir"], license = "GPL-3")