__init__.py 421 B

1234567891011
  1. """The WebIO"""
  2. # version is a human-readable version number.
  3. # version_info is a four-tuple for programmatic comparison. The first
  4. # three numbers are the components of the version number. The fourth
  5. # is zero for an official release, positive for a development branch,
  6. # or negative for a release candidate or beta (after the base version
  7. # number has been incremented)
  8. version = "0.1.0"
  9. version_info = (0, 1, 0, 0)