~jeff-licquia/bzr-bisect/yesno

« back to all changes in this revision

Viewing changes to meta.py

  • Committer: Jeff Licquia
  • Date: 2008-02-19 14:25:42 UTC
  • Revision ID: jeff@licquia.org-20080219142542-nuagvzj0scmxo3mu
Move plugin metadata to its own package, and redo versioning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Queryable plugin variables, from a proposal by Robert Collins.
 
2
 
 
3
bzr_plugin_name = 'bisect'
 
4
 
 
5
version_info = (1, 1, 0, 'pre', 0)
 
6
__version__ = '.'.join([str(x) for x in version_info[:3]])
 
7
if version_info[3] != 'final':
 
8
    __version__ = "%s%s%d" % (__version__, version_info[3], version_info[4])
 
9
 
 
10
bzr_minimum_api = (0, 18, 0)
 
11
 
 
12
bzr_commands = [ 'bisect' ]