From 05f985d611b0ab87fe901ef662d8603c8b8625fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20M=C3=BCller?= Date: Mon, 21 Nov 2022 03:14:19 +0100 Subject: [PATCH] Include static and template files in packages --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 86e17a6..d5807b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,10 @@ name = "fabcal" version = "0.0.1" description = "" authors = ["Fabian Müller "] +include = [ + { path = "static", format = ["sdist", "wheel"] }, + { path = "templates", format = ["sdist", "wheel"] }, +] [tool.poetry.dependencies] python = "^3.8"