/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.64.80 by Ian Clatworthy
added NEWS and setup.py
1
#!/usr/bin/env python2.4
2
from distutils.core import setup
3
4
bzr_plugin_name = 'fastimport'
5
0.64.85 by Ian Clatworthy
prepare for 0.7 development
6
bzr_plugin_version = (0, 7, 0, 'dev', 0)
0.64.81 by Ian Clatworthy
'bzr help fastimport' now provides useful help
7
bzr_minimum_version = (1, 1, 0)
0.64.80 by Ian Clatworthy
added NEWS and setup.py
8
bzr_maximum_version = None
9
10
if __name__ == 'main':
11
    setup(name="fastimport",
0.64.85 by Ian Clatworthy
prepare for 0.7 development
12
          version="0.7.0dev0",
0.64.84 by Ian Clatworthy
release 0.6
13
          description="stream-based import into and export from Bazaar.",
0.64.80 by Ian Clatworthy
added NEWS and setup.py
14
          author="Canonical Ltd",
15
          author_email="bazaar@lists.canonical.com",
16
          license = "GNU GPL v2",
17
          url="https://launchpad.net/bzr-fastimport",
18
          packages=['bzrlib.plugins.fastimport',
19
                    'bzrlib.plugins.fastimport.processors',
20
                    'bzrlib.plugins.fastimport.tests',
21
                    ],
22
          package_dir={'bzrlib.plugins.fastimport': '.'})