desktop

Annotated setup.py

78:4a2810b3c645
2014-01-05 Paul Boddie Added J?r?me's patch to work around a bug in exo-open for XFCE 4.10. Updated the release information.
paulb@9 1
#! /usr/bin/env python
paulb@9 2
paulb@9 3
from distutils.core import setup
paulb@9 4
paulb@9 5
setup(
paulb@9 6
    name         = "desktop",
paulb@9 7
    description  = "Simple desktop integration for Python.",
paulb@9 8
    author       = "Paul Boddie",
paulb@9 9
    author_email = "paul@boddie.org.uk",
paulb@20 10
    url          = "http://www.python.org/pypi/desktop",
paul@78 11
    version      = "0.4.2",
paulb@54 12
    packages     = ["desktop"]
paulb@9 13
    )