/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jelmer Vernooij
  • Date: 2006-08-16 00:22:24 UTC
  • Revision ID: jelmer@samba.org-20060816002224-52a986ce5032b1de
Release 0.9, list myself as maintainer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
setup(
7
7
    name = "gtk",
8
 
    version = "0.8.2",
 
8
    version = "0.9.0",
 
9
    maintainer = "Jelmer Vernooij",
 
10
    maintainer_email = "jelmer@samba.org",
9
11
    description = "GTK+ Frontends for various Bazaar commands",
10
12
    license = "GNU GPL v2",
11
 
    package_dir = {"bzrlib.plugins.gtk": ".","bzrlib.plugins.gtk.viz": "viz", "bzrlib.plugins.gtk.annotate": "annotate"},
12
 
    packages = ["bzrlib.plugins.gtk","bzrlib.plugins.gtk.viz","bzrlib.plugins.gtk.annotate"],
 
13
    package_dir = {
 
14
        "bzrlib.plugins.gtk": ".",
 
15
        "bzrlib.plugins.gtk.viz": "viz", 
 
16
        "bzrlib.plugins.gtk.annotate": "annotate"
 
17
        },
 
18
    packages = [
 
19
        "bzrlib.plugins.gtk",
 
20
        "bzrlib.plugins.gtk.viz",
 
21
        "bzrlib.plugins.gtk.annotate"
 
22
        ],
13
23
)