/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Vincent Ladeuil
  • Date: 2007-11-20 16:06:12 UTC
  • mto: (3928.1.1 bzr.integration)
  • mto: This revision was merged to the branch mainline in revision 3929.
  • Revision ID: v.ladeuil+lp@free.fr-20071120160612-hxv17ysoy0sct45g
Ugly bug marking, but test suite passing for python2.6. Since 2.6
is still developed investigating now seems a waste.

* bzrlib/tests/tree_implementations/test_walkdirs.py:
(TestWalkdirs.test_walkdir_root,
TestWalkdirs.test_walkdir_subtree): Mark failing tests.

* bzrlib/tests/tree_implementations/test_test_trees.py:
(TestTreeShapes.test_tree_with_subdirs_and_all_content_types):
Mark failing tests.

* bzrlib/tests/tree_implementations/test_inv.py:
(TestEntryDiffing.test_link_diff_changed,
TestInventory.test_symlink_target, TestInventory.test_symlink):
Mark failing tests.

* bzrlib/errors.py:
(BzrError.__str__, BzrError.__str__): Working around python2.5
hiding'message' attribute is not needed anymore.

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(name='bzr-git',
6
 
      description='Support for Git branches in Bazaar',
7
 
      keywords='plugin bzr git bazaar',
8
 
      version='0.1',
9
 
      url='http://bazaar-vcs.org/BzrForeignBranches/Git',
10
 
      license='GPL',
11
 
      author='Robert Collins',
12
 
      author_email='robertc@robertcollins.net',
13
 
      long_description="""
14
 
      This plugin adds limited support for checking out and viewing 
15
 
      Git branches in Bazaar.
16
 
      """,
17
 
      package_dir={'bzrlib.plugins.git':'.'},
18
 
      packages=['bzrlib.plugins.git'],
19
 
      scripts=['bzr-receive-pack', 'bzr-upload-pack'],
20
 
      )