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", |
77
by Jelmer Vernooij
Prepare for 0.10.0 |
8 |
version = "0.10.0", |
73
by Jelmer Vernooij
Release 0.9, list myself as maintainer. |
9 |
maintainer = "Jelmer Vernooij", |
10 |
maintainer_email = "jelmer@samba.org", |
|
49
by Jelmer Vernooij
Merge in Dan Loda's gannotate plugin and put it in annotate/ |
11 |
description = "GTK+ Frontends for various Bazaar commands", |
0.1.3
by Dan Loda
install stuff |
12 |
license = "GNU GPL v2", |
73
by Jelmer Vernooij
Release 0.9, list myself as maintainer. |
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 |
],
|
|
0.1.3
by Dan Loda
install stuff |
23 |
)
|