From ecfe20e553bde5fd1229af775dee65a6c2497c92 Mon Sep 17 00:00:00 2001 From: Sergey Popinevskiy Date: Sun, 22 May 2022 14:16:19 +0300 Subject: [PATCH] Fix setup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Error Project file has a ‘pyproject.toml’ and its build backend is missing the ‘build_editable’ hook. This is due to a limitation in Setuptools support for PEP 660. https://github.com/pypa/setuptools/issues/2816 --- setup.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6068493 --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +from setuptools import setup + +setup()