__init__.py 321 B

12345678910
  1. """:mod:`wirerope` --- Universal method/function wrapper.
  2. =========================================================
  3. """
  4. # this line must be placed first for setup.cfg
  5. from ._version import __version__
  6. from .wire import Wire
  7. from .rope import WireRope, RopeCore
  8. __all__ = ('__version__', 'Wire', 'RopeCore', 'WireRope')