From 243ed938c4bc56c51080a36fab2972e7a1fc1ddc Mon Sep 17 00:00:00 2001 From: Josiah Oberholtzer Date: Tue, 13 Dec 2022 13:58:24 -0500 Subject: [PATCH] Add py.typed, bump to 0.6.6 --- setup.py | 1 + uqbar/_version.py | 2 +- uqbar/py.typed | 0 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 uqbar/py.typed diff --git a/setup.py b/setup.py index a6bf17ea..508465c4 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ def read_version(): if __name__ == "__main__": setuptools.setup( + package_data={"uqbar": ["py.typed"]}, packages=setuptools.find_packages( include=["uqbar", "uqbar.*"], exclude=["*__pycache__*"] ), diff --git a/uqbar/_version.py b/uqbar/_version.py index ff96f998..7a1c080e 100644 --- a/uqbar/_version.py +++ b/uqbar/_version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 6, 5) +__version_info__ = (0, 6, 6) __version__ = ".".join(str(x) for x in __version_info__) diff --git a/uqbar/py.typed b/uqbar/py.typed new file mode 100644 index 00000000..e69de29b