2009-05-21 | Paul Boddie | file changeset files shortlog | Added incremental access to Map instance results, along with an iteration interface. Added an example of pmap and iteration. Updated release notes. |
paulb@24 | 1 | #! /usr/bin/env python |
paulb@24 | 2 | |
paulb@24 | 3 | from distutils.core import setup |
paulb@24 | 4 | |
paulb@24 | 5 | setup( |
paulb@130 | 6 | name = "pprocess", |
paulb@24 | 7 | description = "Elementary parallel programming for Python", |
paulb@24 | 8 | author = "Paul Boddie", |
paulb@24 | 9 | author_email = "paul@boddie.org.uk", |
paulb@133 | 10 | url = "http://www.boddie.org.uk/python/pprocess.html", |
paul@155 | 11 | version = "0.4.1", |
paulb@40 | 12 | py_modules = ["pprocess"] |
paulb@24 | 13 | ) |