__init__.py 140 B

123456
  1. VERSION = (0, 5, 20)
  2. def get_version():
  3. "Return the version as a human-format string."
  4. return ".".join([str(i) for i in VERSION])