From 9109e388a025513d0affcfaa9804097be2e4b316 Mon Sep 17 00:00:00 2001 From: Ethan White Date: Tue, 7 May 2024 07:28:28 -0400 Subject: [PATCH] Let setuptools automatically handle package discovery setuptools already has a built in system for finding packages. By explicitly finding packages without excludes we are discovery the build directory and producing infinitely nested directories when repeatedly installing from the root directory. Fixes #119 --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 69b379a..907df01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,8 +59,5 @@ requires-python = ">=3.6" [project.scripts] "offlinedatasci"="offlinedatasci:cli.main" -[tool.setuptools.packages] -find = {} - [tool.setuptools.package-data] "*" = ["miniCran.R"]