/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: 2018-10-13 14:21:06 UTC
  • mfrom: (7131.1.1 default-dulwich)
  • Revision ID: breezy.the.bot@gmail.com-20181013142106-1v8fjwclm78l74l2
Install dulwich by default, so git support works out of the box when installing from pip.

Merged from https://code.launchpad.net/~jelmer/brz/default-dulwich/+merge/356199

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
    'install_requires': [
58
58
        'configobj',
59
59
        'six>=1.9.0',
 
60
        # Technically, Breezy works without these two dependencies too. But there's
 
61
        # no way to enable them by default and let users opt out.
 
62
        'fastimport>=0.9.8',
 
63
        'dulwich>=0.19.1',
60
64
        ],
61
65
    'extras_require': {
62
 
        'fastimport': ['fastimport>=0.9.8'],
63
 
        'git': ['dulwich>=0.19.1'],
 
66
        'fastimport': [],
 
67
        'git': [],
64
68
        },
65
69
    'tests_require': [
66
70
        'testtools',