1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env python2.4
"""GTK+ Frontends for various Bazaar commands."""
from distutils.core import setup
setup(
name = "gtk",
version = "0.9.0",
maintainer = "Jelmer Vernooij",
maintainer_email = "jelmer@samba.org",
description = "GTK+ Frontends for various Bazaar commands",
license = "GNU GPL v2",
package_dir = {
"bzrlib.plugins.gtk": ".",
"bzrlib.plugins.gtk.viz": "viz",
"bzrlib.plugins.gtk.annotate": "annotate"
},
packages = [
"bzrlib.plugins.gtk",
"bzrlib.plugins.gtk.viz",
"bzrlib.plugins.gtk.annotate"
],
)
|