2005-09-30 | paulb | file changeset files shortlog | [project @ 2005-09-30 15:01:50 by paulb] Fixed classifiers. |
paulb@24 | 1 | #! /usr/bin/env python |
paulb@24 | 2 | |
paulb@24 | 3 | from distutils.core import setup |
paulb@24 | 4 | |
paulb@24 | 5 | import parallel |
paulb@24 | 6 | |
paulb@24 | 7 | setup( |
paulb@24 | 8 | name = "parallel", |
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@24 | 12 | url = "http://www.python.org/pypi/parallel", |
paulb@24 | 13 | version = parallel.__version__, |
paulb@24 | 14 | py_modules = ["parallel"] |
paulb@24 | 15 | ) |