From 6668b0889c073fce76be216fc12f5a3b1cb2ca28 Mon Sep 17 00:00:00 2001 From: Darren Eberly Date: Sun, 19 Feb 2023 17:40:24 -0500 Subject: [PATCH] Fix setuptools package find --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0c8fc57..cf8d582 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,7 +64,7 @@ build = [ ] [tool.setuptools.packages.find] -include = ["pytiled-parser", "pytiled-parser.*"] +include = ["pytiled_parser", "pytiled_parser.*"] [build-system] requires = ["setuptools", "wheel"]