summaryrefslogtreecommitdiff
path: root/wrappers
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-31 12:52:29 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-31 12:52:29 +0100
commite4d265cd38ef94cff5765009c7c5e022b328939e (patch)
tree110a164e434730d433d0558c7db9da4034ceccdc /wrappers
parentc5609f55481899a888fd7235ff454fef79d3a7cf (diff)
Python: Add py.typed for Mypy
Diffstat (limited to 'wrappers')
-rw-r--r--wrappers/python/eduvpn_common/py.typed0
-rwxr-xr-xwrappers/python/setup.py2
2 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/python/eduvpn_common/py.typed b/wrappers/python/eduvpn_common/py.typed
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/wrappers/python/eduvpn_common/py.typed
diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py
index e03fa9a..728bfaa 100755
--- a/wrappers/python/setup.py
+++ b/wrappers/python/setup.py
@@ -105,6 +105,6 @@ setup(
packages=["eduvpn_common"],
python_requires=">=3.6",
package_dir={"eduvpn_common": "eduvpn_common"},
- package_data={"eduvpn_common": [f"lib/*{_libname}*"]},
+ package_data={"eduvpn_common": [f"lib/*{_libname}*", "py.typed"]},
cmdclass={"bdist_wheel": bdist_wheel},
)