2007-12-15 | paulb | file changeset files shortlog | [project @ 2007-12-15 18:52:22 by paulb] Updated release information. Changed installation to install a package, not a module. |
paulb@9 | 1 | #! /usr/bin/env python |
paulb@9 | 2 | |
paulb@9 | 3 | from distutils.core import setup |
paulb@9 | 4 | |
paulb@9 | 5 | import desktop |
paulb@9 | 6 | |
paulb@9 | 7 | setup( |
paulb@9 | 8 | name = "desktop", |
paulb@9 | 9 | description = "Simple desktop integration for Python.", |
paulb@9 | 10 | author = "Paul Boddie", |
paulb@9 | 11 | author_email = "paul@boddie.org.uk", |
paulb@20 | 12 | url = "http://www.python.org/pypi/desktop", |
paulb@9 | 13 | version = desktop.__version__, |
paulb@54 | 14 | packages = ["desktop"] |
paulb@9 | 15 | ) |