/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: Dan Loda
  • Date: 2005-10-28 08:06:28 UTC
  • mto: (0.1.9)
  • mto: This revision was merged to the branch mainline in revision 49.
  • Revision ID: danloda@gmail.com-20051028080628-a31d0bc2c7db0723
install stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
from distutils.core import setup
 
4
 
 
5
setup(
 
6
    name = "gannotate",
 
7
    version = "0.6",
 
8
    description = "GTK+ annotate plugin for bzr",
 
9
    author = "Dan Loda",
 
10
    author_email = "danloda@gmail.com",
 
11
    license = "GNU GPL v2",
 
12
    package_dir = {"bzrlib.plugins.gannotate": "."},
 
13
    packages = ["bzrlib.plugins.gannotate"],
 
14
)
 
15