From 6a2decc9a9ce636b49832a61997aa55798b8eec7 Mon Sep 17 00:00:00 2001 From: Marcus Fredriksson Date: Tue, 4 Feb 2025 22:20:52 +0100 Subject: [PATCH] Added a more dynamic package finding method --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3e27b9d..e7084df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tomlval" -version = "1.0.2" +version = "1.0.3" description = "A simple and easy to use TOML validator for Python." authors = [ { name = "Marcus Fredriksson", email = "marcus@marcusfredriksson.com" }, @@ -30,8 +30,8 @@ dev = [ requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta" -[tool.setuptools] -packages = ["tomlval", "tomlval.errors", "tomlval.types", "tomlval.utils"] +[tool.setuptools.packages.find] +include = ["tomlval", "tomlval.*"] [tool.black] line-length = 80