/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 bzrlib/plugins/fastimport/setup.py

Bundle bzr-fastimport.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
from distutils.core import setup
 
3
from info import *
 
4
 
 
5
if __name__ == '__main__':
 
6
    version = ".".join([str(x) for x in bzr_plugin_version])
 
7
    setup(name="bzr-fastimport",
 
8
          version=version,
 
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",
 
15
          scripts=[],
 
16
          packages=['bzrlib.plugins.fastimport',
 
17
                    'bzrlib.plugins.fastimport.processors',
 
18
                    'bzrlib.plugins.fastimport.tests',
 
19
                    ],
 
20
          package_dir={'bzrlib.plugins.fastimport': '.'})