opyml/opyml/__init__.py

22 lines
322 B
Python

"""
.. include:: ../README.md
"""
from .body import Body
from .head import Head
from .opml import OPML
from .outline import Outline
__version__ = "0.1.2"
# Export everything at the top-level.
__all__ = [
"Body",
"Head",
"OPML",
"Outline",
]
# Set docformat for pdoc.
__docformat__ = "restructuredtext"