Hi, I am trying to make a Thonny plugin that will fetch remote .py files and will load them in editor.
I changed the __init__.py content to the simple example:
from thonny import get_workbench
from tkinter.messagebox import showinfo
def hello():
showinfo("Hello!", "Thonny rules!")
def load_plugin():
get_workbench().add_command(command_id="hello",
menu_name="tools",
command_label="Hello!",
handler=hello)
But I get error when I am trying Tools > Manage Plugins > Import Local Zip
Something that setup.py or pyproject.toml is not found, although they are present.
Any ideas or a simple (detailed) to follow guide on how to make a Plugin from scratch?
___
Br, John