pprocess

setup.py

64:0f1359fd3b78
2007-01-14 paulb [project @ 2007-01-14 19:11:03 by paulb] A simple example showing the basic method for performing a parallel computation using a limited number of processes.
     1 #! /usr/bin/env python     2      3 from distutils.core import setup     4      5 import pprocess     6      7 setup(     8     name         = "parallel",     9     description  = "Elementary parallel programming for Python",    10     author       = "Paul Boddie",    11     author_email = "paul@boddie.org.uk",    12     url          = "http://www.python.org/pypi/parallel",    13     version      = pprocess.__version__,    14     py_modules   = ["pprocess"]    15     )