__init__.py 501 B

123456789101112131415
  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)
  10. from os.path import abspath, dirname
  11. project_dir = dirname(abspath(__file__))