__init__.py 306 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. """
  3. Pywinpty
  4. ========
  5. This package provides a Cython wrapper around winpty C++ library.
  6. """
  7. # yapf: disable
  8. # Local imports
  9. from .ptyprocess import PtyProcess
  10. from .winpty_wrapper import PTY
  11. PTY
  12. PtyProcess
  13. VERSION_INFO = (0, 5, 7)
  14. __version__ = '.'.join(map(str, VERSION_INFO))