From 459c75006a11265d2dbbfaed5e389cd61d7c93c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 31 Aug 2023 15:36:02 +0200 Subject: [PATCH] Include documentation and test files in sdist archives Include documentation sources and test files in sdist archives in order to make it possible to use them to build distribution packages. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fb56453..dd6565c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,3 +38,6 @@ filterwarnings = [ # See: aio-libs/aiohttp#7545 "ignore:.*datetime.utcfromtimestamp().*:DeprecationWarning", ] + +[tool.flit.sdist] +include = ["docs", "tests"]