sendmux-sdk 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sendmux-sdk
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Umbrella package for the Sendmux Python SDK.
|
|
5
|
+
Project-URL: Repository, https://github.com/Sendmux/sendmux-sdk
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Requires-Dist: sendmux-core<2.0.0,>=1.0.0
|
|
8
|
+
Requires-Dist: sendmux-mailbox<2.0.0,>=1.0.0
|
|
9
|
+
Requires-Dist: sendmux-management<2.0.0,>=1.0.0
|
|
10
|
+
Requires-Dist: sendmux-sending<2.0.0,>=1.0.0
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# sendmux-sdk
|
|
14
|
+
|
|
15
|
+
Optional umbrella package for the Sendmux Python SDK.
|
|
16
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.27"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "sendmux-sdk"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "Umbrella package for the Sendmux Python SDK."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"sendmux-core>=1.0.0,<2.0.0",
|
|
13
|
+
"sendmux-mailbox>=1.0.0,<2.0.0",
|
|
14
|
+
"sendmux-management>=1.0.0,<2.0.0",
|
|
15
|
+
"sendmux-sending>=1.0.0,<2.0.0",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Repository = "https://github.com/Sendmux/sendmux-sdk"
|
|
20
|
+
|
|
21
|
+
[tool.hatch.build.targets.sdist]
|
|
22
|
+
core-metadata-version = "2.4"
|
|
23
|
+
|
|
24
|
+
[tool.hatch.build.targets.wheel]
|
|
25
|
+
core-metadata-version = "2.4"
|
|
26
|
+
packages = ["sendmux_sdk"]
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from importlib import import_module
|
|
4
|
+
from types import ModuleType
|
|
5
|
+
|
|
6
|
+
__all__ = ["core", "mailbox", "management", "sending"]
|
|
7
|
+
|
|
8
|
+
_MODULES = {
|
|
9
|
+
"core": "sendmux_core",
|
|
10
|
+
"mailbox": "sendmux_mailbox",
|
|
11
|
+
"management": "sendmux_management",
|
|
12
|
+
"sending": "sendmux_sending",
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def __getattr__(name: str) -> ModuleType:
|
|
17
|
+
if name not in _MODULES:
|
|
18
|
+
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|
|
19
|
+
module = import_module(_MODULES[name])
|
|
20
|
+
globals()[name] = module
|
|
21
|
+
return module
|