From bbad45ec1ab5baa0aca02e06857ee97ad466ab19 Mon Sep 17 00:00:00 2001 From: Tim Schwenke Date: Mon, 22 Aug 2022 21:36:45 +0200 Subject: [PATCH] ci: Remove unnecessary include of py.typed from pyproject.toml (#37) Not necessary for example according to the following blogpost: https://blog.whtsky.me/tech/2021/dont-forget-py.typed-for-your-typed-python-package/ Also I tested it in another repository to make sure. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7f66c0e..347c86a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,6 @@ license = "ISC" readme = "README.md" repository = "https://github.com/trallnag/prometheus-fastapi-instrumentator" keywords = ["prometheus", "instrumentation", "fastapi", "exporter", "metrics"] -include = ["src/prometheus_fastapi_instrumentator/py.typed"] [tool.poetry.dependencies] python = ">= 3.7.0, < 4.0.0"