1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='brz-extmerge',
description='External merge plugin for Breezy',
keywords='plugin brz merge',
version='0.0.1',
version_info=(0,1,0,'dev',0),
url='http://erik.bagfors.nu/bzr-plugins/extmerge/',
download_url='http://erik.bagfors.nu/bzr-plugins/extmerge/',
license='GPLv2',
author='Erik Bagfors',
author_email='erik@bagfors.nu',
long_description="""
This plugin calls a user defined tool, if that exists. Otherwise, it tries kdiff3, xxdiff, meld and opendiff in that order.
""",
package_dir={'breezy.plugins.extmerge':'.'},
packages=['breezy.plugins.extmerge']
)
|