pprocess

setup.py

36:c0e6ca347c6b
2005-09-29 paulb [project @ 2005-09-29 17:28:37 by paulb] Changed the indexing demonstration to accept various other arguments, with the first argument being the directory containing files to index.
     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     )