/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 03:05:42 UTC
  • mfrom: (0.45.1 bzr-grep)
  • mto: (0.40.136 grep)
  • mto: This revision was merged to the branch mainline in revision 6555.
  • Revision ID: parth.malwankar@gmail.com-20100608030542-xf0n7xx72vv5v8x2
(mgz) fixed setup.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
bzr_commands = ['grep']
9
9
 
10
 
if __name__ == 'main':
 
10
if __name__ == '__main__':
11
11
    setup(name="bzr grep",
12
12
          version="0.4",
13
13
          description="Print lines matching pattern for specified "
16
16
          author_email="bazaar@lists.canonical.com",
17
17
          license = "GNU GPL v2",
18
18
          url="https://launchpad.net/bzr-grep",
19
 
          packages=['grep'],
20
 
          package_dir={'grep': '.'})
 
19
          packages=['bzrlib.plugins.grep'],
 
20
          package_dir={'bzrlib.plugins.grep': '.'})