2005-09-28 | paulb | raw annotate files changeset graph | [project @ 2005-09-28 17:26:08 by paulb] Added Debian packaging files. |
1 #! /usr/bin/env python 2 3 from distutils.core import setup 4 5 import parallel 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 = parallel.__version__, 14 py_modules = ["parallel"] 15 )