name: myextension # Will be concatenated with the group_id to form the extension ID author: Jane Doe env_yml_path: # Path to the Conda environment yml, from which the environment for this extension will be built when bundling extension_module: extension # The .py Python module containing the nodes of your extension description: My New Extension # Human readable bundle name / description long_description: This extension provides functionality that everyone wants to have. # Text describing the extension (optional) group_id: org.knime.python3.nodes # Will be concatenated with the name to form the extension ID version: 0.1.0 # Version of this Python node extension. Must use three-component semantic versioning for deployment to work. vendor: KNIME AG, Zurich, Switzerland # Who offers the extension license_file: LICENSE.TXT # Best practice: put your LICENSE.TXT next to the knime.yml; otherwise you would need to change to path/to/LICENSE.txt #Optional: If you do not have dependencies on other extensions, you do not need feature_depencendies and their entries feature_dependencies: - org.knime.features.chem.types 5.3 # If you want to specify the version - note that this specifies the version being greater equal 5.3.0 - org.knime.features.chem.types # If the version does not matter