I want to install some python packages ( importlib_metadata threadpoolctl) from source. They have pyproject.toml
setup.cfg
files, but there's no setup.py
file. So when I try to install them, they give the same errors:
Traceback (most recent call last):
File "utils/scanpypi", line 750, in <module>
main()
File "utils/scanpypi", line 698, in main
package.load_setup()
File "utils/scanpypi", line 300, in load_setup
s_file, s_path, s_desc = imp.find_module('setup', [self.tmp_extract])
File "/usr/lib/python3.8/imp.py", line 296, in find_module
raise ImportError(_ERR_MSG.format(name), name=name)
ImportError: No module named 'setup'
Can I get some help, pls?