2008-06-02 | paulb | file changeset files shortlog | [project @ 2008-06-02 19:33:57 by paulb] Updated release information. |
paulb@24 | 1 | #! /usr/bin/env python |
paulb@24 | 2 | |
paulb@24 | 3 | from distutils.core import setup |
paulb@24 | 4 | |
paulb@40 | 5 | import pprocess |
paulb@24 | 6 | |
paulb@24 | 7 | setup( |
paulb@130 | 8 | name = "pprocess", |
paulb@24 | 9 | description = "Elementary parallel programming for Python", |
paulb@24 | 10 | author = "Paul Boddie", |
paulb@24 | 11 | author_email = "paul@boddie.org.uk", |
paulb@133 | 12 | url = "http://www.boddie.org.uk/python/pprocess.html", |
paulb@40 | 13 | version = pprocess.__version__, |
paulb@40 | 14 | py_modules = ["pprocess"] |
paulb@24 | 15 | ) |