/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.40.127 by Parth Malwankar
bumped up version number to 0.2.0.
1
#!/usr/bin/env python
0.40.49 by Parth Malwankar
added setup.py for plugin-info support
2
from distutils.core import setup
3
4
bzr_plugin_name = 'grep'
5
0.44.1 by Parth Malwankar
updated version number to 0.4.0dev
6
bzr_plugin_version = (0, 4, 0, 'dev', 0)
0.41.1 by Parth Malwankar
0.0.1 final
7
0.40.49 by Parth Malwankar
added setup.py for plugin-info support
8
bzr_commands = ['grep']
9
0.45.1 by Martin
Fix typo and install paths in setup.py so it actually works
10
if __name__ == '__main__':
0.40.49 by Parth Malwankar
added setup.py for plugin-info support
11
    setup(name="bzr grep",
0.44.1 by Parth Malwankar
updated version number to 0.4.0dev
12
          version="0.4",
0.40.49 by Parth Malwankar
added setup.py for plugin-info support
13
          description="Print lines matching pattern for specified "
14
                      "files and revisions",
15
          author="Canonical Ltd",
16
          author_email="bazaar@lists.canonical.com",
17
          license = "GNU GPL v2",
18
          url="https://launchpad.net/bzr-grep",
0.45.1 by Martin
Fix typo and install paths in setup.py so it actually works
19
          packages=['bzrlib.plugins.grep'],
20
          package_dir={'bzrlib.plugins.grep': '.'})