2006-07-19 | paulb | raw annotate files changeset graph | [project @ 2006-07-19 21:36:11 by paulb] Added Python 2.3 support using popen2, choosing a specific _run function according to module availability. Updated release information. |
1 #! /usr/bin/env python 2 3 from distutils.core import setup 4 5 import desktop 6 7 setup( 8 name = "desktop", 9 description = "Simple desktop integration for Python.", 10 author = "Paul Boddie", 11 author_email = "paul@boddie.org.uk", 12 url = "http://www.python.org/pypi/desktop", 13 version = desktop.__version__, 14 py_modules = ["desktop"] 15 )