python: Moved the Python 3 files to their own directory and restored Python 2 files.
[ashd.git] / python3 / setup.py
CommitLineData
173e0e9e
FT
1#!/usr/bin/python3
2
3from distutils.core import setup, Extension
4
5htlib = Extension("ashd.htlib", ["htp.c"],
6 libraries = ["ht"])
7
8setup(name = "ashd-py",
9 version = "0.4",
10 description = "Python module for handling ashd requests",
11 author = "Fredrik Tolf",
12 author_email = "fredrik@dolda2000.com",
13 url = "http://www.dolda2000.com/~fredrik/ashd/",
14 ext_modules = [htlib],
15 packages = ["ashd"],
16 scripts = ["ashd-wsgi3", "scgi-wsgi3"],
17 license = "GPL-3")