__init__.py 419 B

12345678910
  1. from .core import Source, FrameInfo, markers_from_ranges, Options, LINE_GAP, Line, Variable, RangeInLine, \
  2. RepeatedFrames, MarkerInLine, style_with_executing_node, BlankLineRange, BlankLines
  3. from .formatting import Formatter
  4. from .serializing import Serializer
  5. try:
  6. from .version import __version__
  7. except ImportError:
  8. # version.py is auto-generated with the git tag when building
  9. __version__ = "???"