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
This commit is contained in:
Richard Mwewa
2023-04-16 01:12:47 +02:00
committed by GitHub
parent 6a535ae856
commit 595dcc5aac

View File

@@ -2,6 +2,9 @@
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["octosuite"]
[project]
name = "octosuite"
version = "3.1.1"