comparison corebio/_version.py @ 7:8d676bbd1f2d

Uploaded
author davidmurphy
date Mon, 16 Jan 2012 07:03:36 -0500
parents c55bdc2fb9fa
children
comparison
equal deleted inserted replaced
6:4a4aca3d57c9 7:8d676bbd1f2d
1
2
3 # Keywords between dollar signs are subsituted by subversion.
4 # The date and build will only tell the truth after a branch or tag,
5 # since different files in trunk will have been changed at different times
6 date ="$Date: 2006-11-27 12:10:21 -0800 (Mon, 27 Nov 2006) $".split()[1]
7 revision = "$Revision: 167 $".split()[1]
8
9 # major.minor.patch
10 # The patch level should be zero in trunk, a positive number in a release
11 # branch. During a release, increment the minor number in trunk and set the
12 # patch level to 1 in the branch. Increment patch number for bug fix releases.
13 __version__ = '0.5.0' #b' + revision
14
15
16 description = "CoreBio %s (%s)" % (__version__, date)
17
18