At http://people.canonical.com/~robertc/baz2.0/plugins/guess/trunk
------------------------------------------------------------ revno: 3 revision-id: [email protected] parent: [email protected] committer: Robert Collins <[email protected]> branch nick: trunk timestamp: Fri 2010-02-26 16:57:19 +1100 message: Add a setup.py for bzr-guess. === added file 'setup.py' --- a/setup.py 1970-01-01 00:00:00 +0000 +++ b/setup.py 2010-02-26 05:57:19 +0000 @@ -0,0 +1,19 @@ +#!/usr/bin/env python2.4 +from distutils.core import setup + +bzr_plugin_name = 'guess' + +bzr_plugin_version = (0, 0, 1, 'dev', 0) +bzr_minimum_version = (0, 17, 0) + +if __name__ == 'main': + setup(name="bzr-guess plugin", + version="0.0.1dev0", + description="when a bzr command is mispelt, offer the closest match instead.", + author="Canonical Ltd", + author_email="[email protected]", + license = "GNU GPL v2", + url="https://launchpad.net/bzr-guess", + packages=['bzrlib.plugins.guess', + ], + package_dir={'bzrlib.plugins.guess': '.'}) -- bazaar-commits mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/bazaar-commits
