/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2019-05-29 00:23:59 UTC
  • mfrom: (7290.14.6 external-patiencediff)
  • Revision ID: breezy.the.bot@gmail.com-20190529002359-8cyjs8gq5d096ry0
Use external patiencediff.

Merged from https://code.launchpad.net/~jelmer/brz/external-patiencediff/+merge/363891

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    'install_requires': [
66
66
        'configobj',
67
67
        'six>=1.9.0',
 
68
        'patiencediff',
68
69
        # Technically, Breezy works without these two dependencies too. But there's
69
70
        # no way to enable them by default and let users opt out.
70
71
        'fastimport>=0.9.8',
334
335
    add_cython_extension('breezy.bzr._dirstate_helpers_pyx')
335
336
    add_cython_extension('breezy._readdir_pyx')
336
337
add_cython_extension('breezy.bzr._chk_map_pyx')
337
 
ext_modules.append(Extension('breezy._patiencediff_c',
338
 
                             ['breezy/_patiencediff_c.c']))
339
338
add_cython_extension('breezy.bzr._btree_serializer_pyx')
340
339
 
341
340