From 049f05c071a44dfb7c47d019fed434c34ec387c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Desgrange?= <13271765+RemiDesgrange@users.noreply.github.com> Date: Sat, 8 Mar 2025 15:55:01 +0000 Subject: [PATCH] Add py.typed file to package for mypy. --- prometheus_api_client/py.typed | 0 setup.py | 1 + 2 files changed, 1 insertion(+) create mode 100644 prometheus_api_client/py.typed diff --git a/prometheus_api_client/py.typed b/prometheus_api_client/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index a2ad946..4796b1a 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,7 @@ def get_version(): url="https://github.com/4n4nd/prometheus-api-client-python", install_requires=get_install_requires(), packages=setuptools.find_packages(), + package_data={"prometheus-api-client": ["py.typed"]}, tests_require=["httmock"], classifiers=[ "Programming Language :: Python :: 3.13",