2005-10-11 | paulb | raw annotate files changeset graph | [project @ 2005-10-11 17:11:50 by paulb] Added copyright and licence information. |
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 )