diff --git a/openxml/__init__.py b/openxml/__init__.py new file mode 100644 index 0000000..d365245 --- /dev/null +++ b/openxml/__init__.py @@ -0,0 +1,8 @@ +# Dunder attributes +__version__ = "v0.0.0" # update setup.py +__author__ = "Jordan Welsman" + +from .loading import * +from .saving import * + +__all__ = loading.__all__, saving.__all__ \ No newline at end of file diff --git a/openxml/loading/__init__.py b/openxml/loading/__init__.py new file mode 100644 index 0000000..b680692 --- /dev/null +++ b/openxml/loading/__init__.py @@ -0,0 +1 @@ +__all__ = [] \ No newline at end of file diff --git a/openxml/saving/__init__.py b/openxml/saving/__init__.py new file mode 100644 index 0000000..b680692 --- /dev/null +++ b/openxml/saving/__init__.py @@ -0,0 +1 @@ +__all__ = [] \ No newline at end of file