Mercurial > repos > davidmurphy > codonlogo
comparison corebio/_version.py @ 0:c55bdc2fb9fa
Uploaded
author | davidmurphy |
---|---|
date | Thu, 27 Oct 2011 12:09:09 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c55bdc2fb9fa |
---|---|
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 |