opyml/opyml/__init__.py

22 lines
322 B
Python
Raw Normal View History

2021-10-25 12:54:11 +00:00
"""
.. include:: ../README.md
"""
from .body import Body
from .head import Head
from .opml import OPML
from .outline import Outline
2022-09-25 21:44:31 +00:00
__version__ = "0.1.2"
2021-10-25 12:54:11 +00:00
# Export everything at the top-level.
__all__ = [
"Body",
"Head",
"OPML",
"Outline",
]
# Set docformat for pdoc.
__docformat__ = "restructuredtext"