~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael Ellerman
  • Date: 2005-11-29 01:41:15 UTC
  • mto: (0.3.1 shelf-dev) (325.1.2 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 334.
  • Revision ID: michael@ellerman.id.au-20051129014115-eff5eb80bc51e0f5
Make HunkSelector agnostic as to whether it's selecting for shelving or
unshelving. Create ShelveHunkSelector() and UnshelveHunkSelector() to
encapsulate this, a bit ugly, but reasonable.

Rename callbacks to be private, ie. beginning with _.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from distutils.core import setup
2
 
setup(name="BzrTools",
3
 
      version="0.1.1",
4
 
      description="Handy utilities for working with BZR(Bazaar-NG).",
5
 
      author="Aaron Bentley",
6
 
      author_email="aaron.bentley@utoronto.ca",
7
 
      url="http://bazaar.canonical.com/BzrTools",
8
 
      packages=['bzrlib.plugins.bzrtools'],
9
 
      package_dir={'bzrlib.plugins.bzrtools': '.'})