2
from distutils.core import setup
5
if __name__ == '__main__':
6
version = ".".join([str(x) for x in bzr_plugin_version])
7
setup(name="bzr-fastimport",
9
description="stream-based import into and export from Bazaar.",
10
author="Canonical Ltd",
11
author_email="bazaar@lists.canonical.com",
12
license = "GNU GPL v2",
13
download_url="http://launchpad.net/bzr-fastimport/trunk/%s/+download/bzr-fastimport-%s.tar.gz" % (version, version),
14
url="https://launchpad.net/bzr-fastimport",
16
packages=['bzrlib.plugins.fastimport',
17
'bzrlib.plugins.fastimport.processors',
18
'bzrlib.plugins.fastimport.tests',
20
package_dir={'bzrlib.plugins.fastimport': '.'})