/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-05-19 16:56:46 UTC
  • mfrom: (0.1.25 gannotate)
  • Revision ID: jelmer@samba.org-20060519165646-0d867938fdbc9097
Merge in Dan Loda's gannotate plugin and put it in annotate/

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
setup(
7
7
    name = "gtk",
8
 
    version = "0.9.0",
9
 
    maintainer = "Jelmer Vernooij",
10
 
    maintainer_email = "jelmer@samba.org",
 
8
    version = "0.8.2",
11
9
    description = "GTK+ Frontends for various Bazaar commands",
 
10
    author = "Dan Loda",
 
11
    author_email = "danloda@gmail.com",
12
12
    license = "GNU GPL v2",
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
    package_dir = {"bzrlib.plugins.gtk": ".","bzrlib.plugins.gtk.viz": "viz", "bzrlib.plugins.gtk.annotate": "annotate"},
 
14
    packages = ["bzrlib.plugins.gtk","bzrlib.plugins.gtk.viz","bzrlib.plugins.gtk.annotate"],
23
15
)