From 6dc17e6d4876c9b588fa7d1d8d0bbd05df33ff57 Mon Sep 17 00:00:00 2001 From: Scott Stevenson Date: Sat, 19 Oct 2024 15:28:12 +0100 Subject: [PATCH] Remove include statement for py.typed This is unnecessary as Poetry already includes it without the explicit pyproject.toml include entry. --- pyproject.toml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6f83ddf..9607c53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,13 +9,12 @@ homepage = "https://github.com/srstevenson/xdg-base-dirs" repository = "https://github.com/srstevenson/xdg-base-dirs" keywords = ["xdg", "base", "directory", "specification"] classifiers = [ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", - "Natural Language :: English", - "Operating System :: Unix", - "Operating System :: Microsoft :: Windows", + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Natural Language :: English", + "Operating System :: Unix", + "Operating System :: Microsoft :: Windows", ] -include = ["src/xdg_base_dirs/py.typed"] [tool.poetry.dependencies] python = ">=3.10,<4.0"