/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.64.90 by Ian Clatworthy
setup.py no longer requires python2.4
1
#!/usr/bin/env python
0.64.80 by Ian Clatworthy
added NEWS and setup.py
2
from distutils.core import setup
3
4
bzr_plugin_name = 'fastimport'
5
0.64.185 by Ian Clatworthy
Open 0.9 development
6
bzr_plugin_version = (0, 9, 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
0.72.1 by Jelmer Vernooij
Fix setup.py
10
if __name__ == '__main__':
0.64.80 by Ian Clatworthy
added NEWS and setup.py
11
    setup(name="fastimport",
0.64.185 by Ian Clatworthy
Open 0.9 development
12
          version="0.9.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",
0.79.1 by Ian Clatworthy
turn bzr-fast-export into a fast-export command
18
          scripts=[],
0.64.80 by Ian Clatworthy
added NEWS and setup.py
19
          packages=['bzrlib.plugins.fastimport',
0.113.1 by Jelmer Vernooij
Fix installation of the exporters module.
20
                    'bzrlib.plugins.fastimport.exporters',
0.64.80 by Ian Clatworthy
added NEWS and setup.py
21
                    'bzrlib.plugins.fastimport.processors',
22
                    'bzrlib.plugins.fastimport.tests',
23
                    ],
24
          package_dir={'bzrlib.plugins.fastimport': '.'})