From 78335ff97b34fcdd343c58c93c6c3e7cb603fdd4 Mon Sep 17 00:00:00 2001 From: Zhen-Qi Liu Date: Tue, 5 Nov 2024 17:00:21 -0500 Subject: [PATCH] [MNT] Update pyproject.toml Updating `pyproject.toml` so that `docs` and `examples` folders will not appear in the top-level of `site-packages`. --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6999aa31..a4dd28a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,8 +61,11 @@ build-backend = "setuptools.build_meta" [tool.setuptools] include-package-data = true -[tool.setuptools.packages] -find = {} +[tool.setuptools.packages.find] +include = [ + "neuromaps", + "neuromaps.*" +] [tool.setuptools.package-data] "*" = ["*.json", "*.bib"]