/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: 2006-05-19 16:56:46 UTC
  • mfrom: (0.1.25 gannotate)
  • Revision ID: jelmer@samba.org-20060519165646-0d867938fdbc9097
Merge in Dan Loda's gannotate plugin and put it in annotate/

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
# -*- coding: UTF-8 -*-
3
 
"""GTK+ Branch Visualisation plugin for bzr."""
4
 
 
5
 
__copyright__ = "Copyright © 2005 Canonical Ltd."
6
 
__author__    = "Scott James Remnant <scott@ubuntu.com>"
7
 
 
8
 
 
9
 
from distutils.core import setup
10
 
 
11
 
 
12
 
setup(name="bzrk",
13
 
      version="0.2",
14
 
      description="GTK+ Branch Visualisation plugin for bzr",
15
 
      author="Scott James Remnant",
16
 
      author_email="scott@ubuntu.com",
17
 
      license="GNU GPL v2",
18
 
 
19
 
      package_dir = { "bzrlib.plugins.bzrk": "." },
20
 
      packages = [ "bzrlib.plugins.bzrk" ],
21
 
      )