/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: 2007-03-09 17:47:28 UTC
  • Revision ID: jelmer@samba.org-20070309174728-gljlmt9b7fu0rrn9
Add simple test for tortoise_bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
 
64
64
setup(
65
65
    name = "bzr-gtk",
66
 
    version = "0.16.0",
 
66
    version = "0.14.0",
67
67
    maintainer = "Jelmer Vernooij",
68
68
    maintainer_email = "jelmer@samba.org",
69
69
    description = "GTK+ Frontends for various Bazaar commands",
77
77
        "bzrlib.plugins.gtk.tests": "tests"
78
78
        },
79
79
    packages = [
80
 
        "olive",
 
80
                "olive",
81
81
        "bzrlib.plugins.gtk",
82
82
        "bzrlib.plugins.gtk.viz",
83
83
        "bzrlib.plugins.gtk.annotate",
84
84
        "bzrlib.plugins.gtk.olive",
85
85
        "bzrlib.plugins.gtk.tests"
86
86
        ],
87
 
    data_files=[('share/olive', ['olive.glade',
88
 
                                 'oliveicon2.png',
89
 
                                 'cmenu.ui',
90
 
                                ]),
91
 
                ('share/olive', ['icons/commit.png',
92
 
                                 'icons/commit16.png',
93
 
                                 'icons/diff.png',
94
 
                                 'icons/diff16.png',
95
 
                                 'icons/log.png',
96
 
                                 'icons/log16.png',
97
 
                                 'icons/pull.png',
98
 
                                 'icons/pull16.png',
99
 
                                 'icons/push.png',
100
 
                                 'icons/push16.png',
101
 
                                 'icons/refresh.png']),
102
 
                ('share/applications', ['olive-gtk.desktop']),
103
 
                ('share/pixmaps', ['icons/olive-gtk.png'])
104
 
               ],
105
 
    cmdclass={'install_data': InstallData}
 
87
      data_files=[('share/olive', ['olive.glade',
 
88
                                   'oliveicon2.png',
 
89
                                   'cmenu.ui',
 
90
                                  ]),
 
91
                  ('share/olive/icons', [\
 
92
                                   'icons/commit.png',
 
93
                                   'icons/commit16.png',
 
94
                                   'icons/diff.png',
 
95
                                   'icons/diff16.png',
 
96
                                   'icons/log.png',
 
97
                                   'icons/log16.png',
 
98
                                   'icons/pull.png',
 
99
                                   'icons/pull16.png',
 
100
                                   'icons/push.png',
 
101
                                   'icons/push16.png',
 
102
                                   'icons/refresh.png']),
 
103
                  ('share/applications', ['olive-gtk.desktop']),
 
104
                  ('share/pixmaps', ['icons/olive-gtk.png'])
 
105
                 ],
 
106
        cmdclass={'install_data': InstallData}
106
107
)