From 723001ec044d380be6fffb5051b8166e5f3e4cba Mon Sep 17 00:00:00 2001 From: Daniel Stoops Date: Tue, 11 Feb 2025 13:11:44 +0200 Subject: [PATCH 1/2] Add py.typed --- pyproject.toml | 6 ++++++ src/czml3/py.typed | 0 2 files changed, 6 insertions(+) create mode 100644 src/czml3/py.typed diff --git a/pyproject.toml b/pyproject.toml index 2a3b95b..9e0c771 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -111,6 +111,12 @@ Documentation = "https://czml3.readthedocs.io/en" [tool.setuptools.dynamic] version = {attr = "czml3.__version__"} +[tool.setuptools.package-data] +"czml3" = ["py.typed"] + +[tool.setuptools.packages.find] +where = ["src"] + [tool.mypy] files = [ "src/**/*.py", diff --git a/src/czml3/py.typed b/src/czml3/py.typed new file mode 100644 index 0000000..e69de29 From 054d362bf57c0a9c20632d57b967eef6abcbf671 Mon Sep 17 00:00:00 2001 From: Daniel Stoops Date: Tue, 11 Feb 2025 13:11:57 +0200 Subject: [PATCH 2/2] Bump to v2.3.4 --- src/czml3/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/czml3/__init__.py b/src/czml3/__init__.py index 96a18e6..8ce3ea3 100644 --- a/src/czml3/__init__.py +++ b/src/czml3/__init__.py @@ -1,5 +1,5 @@ from .core import CZML_VERSION, Document, Packet -__version__ = "2.3.3" +__version__ = "2.3.4" __all__ = ["Document", "Packet", "CZML_VERSION"]