#! /usr/bin/env python

from distutils.core import setup

setup(
    name         = "pprocess",
    description  = "Elementary parallel programming for Python",
    author       = "Paul Boddie",
    author_email = "paul@boddie.org.uk",
    url          = "http://www.boddie.org.uk/python/pprocess.html",
    version      = "0.5",
    py_modules   = ["pprocess"]
    )
