From fb3d52c2424cab39b855b8f7cbe6812a07491e38 Mon Sep 17 00:00:00 2001 From: "Chen, Richard" Date: Mon, 22 Jun 2026 15:31:46 -0700 Subject: [PATCH] Add py.typed file --- nodescraper/py.typed | 0 pyproject.toml | 3 +++ 2 files changed, 3 insertions(+) create mode 100644 nodescraper/py.typed diff --git a/nodescraper/py.typed b/nodescraper/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/pyproject.toml b/pyproject.toml index 9e24d056..8de848a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,6 +62,9 @@ include = ['nodescraper'] [tool.setuptools] include-package-data = true +[tool.setuptools.package-data] +nodescraper = ["py.typed"] + [project.scripts] node-scraper = "nodescraper.cli:cli_entry"