Ajusta setuptools do pyproject.toml para garantir que inclua todas as subpastas do pacote na build

This commit is contained in:
2026-01-22 23:15:00 -03:00
parent f137ca3c36
commit de4bf3d830
+3 -2
View File
@@ -2,8 +2,9 @@
requires = ["setuptools>=61.0"] requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[tool.setuptools] [tool.setuptools.packages.find]
packages = ["notion"] where = ["."]
include = ["notion*"]
[project] [project]
name = "sdk-notion" name = "sdk-notion"