ocarina/libsaria/version.py
Bryan Schumaker c1a2d74f7c libsaria: Move version information to new file
A bit of separation is good here, and it should help with managing the
code.
2011-05-07 15:58:33 -04:00

14 lines
273 B
Python

# Bryan Schumaker (5 / 6 / 2011)
__major__ = 4
__minor__ = 6
__bug__ = 0
__dev__ = True
__vstr__ = "%s.%s" % (__major__, __minor__)
if __bug__ > 0:
__vstr__ = "%s.%s" % (__vstr__, __bug__)
if __dev__ == True:
__vstr__ += "-dev"
__vers__ = "Libsaria %s" % __vstr__