From 595dcc5aacbc65bfc904141c1ce57d545b3188b0 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Sun, 16 Apr 2023 01:12:47 +0200 Subject: [PATCH] Update pyproject.toml Added line `[tool.setuptools]`. Fixes error that might be returned during compilation if there's more than one directory in the project's root directory: error: Multiple top-level packages discovered in a flat-layout --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d85ffb6..d357057 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,9 @@ requires = ["setuptools", "setuptools-scm"] build-backend = "setuptools.build_meta" +[tool.setuptools] +packages = ["octosuite"] + [project] name = "octosuite" version = "3.1.1"