You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
daniel-flassig edited this page Jun 18, 2020
·
20 revisions
A config.xml file is a necessary part of any PYTHA plugin. If a plugin folder does not contain a config.xml file, PYTHA will generate a bare-bones config file for you (this is the recommended way to create this file for your plugin).
A simple config.xml file might look like this:
<?xml version="1.0" encoding="UTF-8"?>
<pluginxmlns="http://xmlns.pytha.com/plugin_config/1.0">
<header>
<guid>XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX</guid>
<version>1.0</version>
<pytha-version>25.0</pytha-version>
<name>Plugin Name</name>
<description>The description of your plugin goes here.</description>
<licensing>Information about the licensing terms goes here.</licensing>
</header>
<extensiontype="function">
<entry-point>main</entry-point>
<caption>Button Caption</caption>
<description>A short description of the function goes here.</description>
<help-file>help.html</help-file>
</extension>
</plugin>