From 28f755e28fc08121fb147e8da88ea215500d2984 Mon Sep 17 00:00:00 2001 From: Jordan Welsman Date: Sun, 12 Mar 2023 19:43:22 -0400 Subject: [PATCH] build: Created internal project files. --- openxml/__init__.py | 8 ++++++++ openxml/loading/__init__.py | 1 + openxml/saving/__init__.py | 1 + 3 files changed, 10 insertions(+) create mode 100644 openxml/__init__.py create mode 100644 openxml/loading/__init__.py create mode 100644 openxml/saving/__init__.py 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