/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: Aaron Bentley
  • Date: 2006-09-18 13:49:47 UTC
  • mfrom: (81 bzr-gtk)
  • mto: (66.6.5 gtk)
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: abentley@panoramicfeedback.com-20060918134947-0c9ad79a67b1765f
MergeĀ fromĀ upstream

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.10.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
)