From 5f0441c82e5c7cf8ad1b63044e3cb1a657ff8159 Mon Sep 17 00:00:00 2001 From: Vincent Durmont Date: Tue, 19 Dec 2023 16:16:11 -0800 Subject: [PATCH] Add py.typed objects to the python SDK --- lightspark/py.typed | 0 setup.cfg | 1 + setup.py | 2 +- 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 lightspark/py.typed diff --git a/lightspark/py.typed b/lightspark/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/setup.cfg b/setup.cfg index 0c0bd46..8751c36 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,7 @@ project_urls = [options] packages = find: +include_package_data = True install_requires = cryptography pyjwt diff --git a/setup.py b/setup.py index 5bce6c2..24ee809 100755 --- a/setup.py +++ b/setup.py @@ -2,4 +2,4 @@ import setuptools -setuptools.setup() +setuptools.setup(include_package_data=True)