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

  • Committer: Parth Malwankar
  • Date: 2010-06-08 04:00:35 UTC
  • mto: (0.40.136 grep)
  • mto: This revision was merged to the branch mainline in revision 6555.
  • Revision ID: parth.malwankar@gmail.com-20100608040035-d7ly72zcuu01nwsa
version information is now taken from version.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
from distutils.core import setup
 
3
import version
3
4
 
4
5
bzr_plugin_name = 'grep'
5
6
 
6
 
bzr_plugin_version = (0, 4, 0, 'dev', 0)
 
7
bzr_plugin_version = version.version_info
7
8
 
8
9
bzr_commands = ['grep']
9
10
 
10
11
if __name__ == '__main__':
11
 
    setup(name="bzr grep",
12
 
          version="0.4",
 
12
    setup(name="bzr-grep",
 
13
          version=version.version_str,
13
14
          description="Print lines matching pattern for specified "
14
15
                      "files and revisions",
15
16
          author="Canonical Ltd",