/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz
49 by Jelmer Vernooij
Merge in Dan Loda's gannotate plugin and put it in annotate/
1
#!/usr/bin/env python2.4
2
"""GTK+ Frontends for various Bazaar commands."""
0.1.3 by Dan Loda
install stuff
3
4
from distutils.core import setup
5
6
setup(
49 by Jelmer Vernooij
Merge in Dan Loda's gannotate plugin and put it in annotate/
7
    name = "gtk",
8
    version = "0.8.2",
9
    description = "GTK+ Frontends for various Bazaar commands",
0.1.3 by Dan Loda
install stuff
10
    license = "GNU GPL v2",
49 by Jelmer Vernooij
Merge in Dan Loda's gannotate plugin and put it in annotate/
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"],
0.1.3 by Dan Loda
install stuff
13
)