/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-03-20 14:07:43 UTC
  • mfrom: (0.4.1 gannotate)
  • mto: This revision was merged to the branch mainline in revision 49.
  • Revision ID: abentley@panoramicfeedback.com-20060320140743-c0e744f040f51301
MergeĀ otherĀ changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python2.4
2
 
"""GTK+ Frontends for various Bazaar commands."""
 
1
#!/usr/bin/env python
3
2
 
4
3
from distutils.core import setup
5
4
 
6
5
setup(
7
 
    name = "gtk",
8
 
    version = "0.8.2",
9
 
    description = "GTK+ Frontends for various Bazaar commands",
 
6
    name = "gannotate",
 
7
    version = "0.7pre",
 
8
    description = "GTK+ annotate plugin for bzr",
10
9
    author = "Dan Loda",
11
10
    author_email = "danloda@gmail.com",
12
11
    license = "GNU GPL v2",
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"],
 
12
    package_dir = {"bzrlib.plugins.gannotate": "."},
 
13
    packages = ["bzrlib.plugins.gannotate"],
15
14
)
 
15