From 2b1e8b6e932c6bce7b1332429a5f7cf4dca199a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sun, 15 Sep 2024 19:16:21 +0200 Subject: [PATCH] Fix including CHANGES.txt and tests in sdist Readd CHANGES.txt and tests to sdist archives, that were lost through the switch to poetry.core. --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b00ea8f..d7175b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,10 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", ] readme = "README.md" +include = [ + { path = "CHANGES.txt", format = "sdist" }, + { path = "tests", format = "sdist" }, +] [tool.poetry.dependencies] python = "^3.8"