Changes between Version 22 and Version 23 of Plugin


Ignore:
Timestamp:
Feb 2, 2021, 10:54:14 AM (4 years ago)
Author:
Olivier Mattelaer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Plugin

    v22 v23  
    1313This file should link to other python file if needed.
    1414
     15The final directory structure should be
     16{{{
     17M5aMC/
     18  PLUGIN/
     19    __init__.py (empty file --do not touch this one--)
     20    MY_PLUGIN1_DIR/
     21      __init__.py (file with mandatory information see below)
     22      my_python_file.py (need to be load from __init__.py)
     23      other_data and directory
     24    MY_PLUGIN2_DIR/
     25      __init__.py (file with mandatory information see below)
     26      my_python_file.py (need to be load from __init__.py)
     27      other_data and directory
     28
     29}}}
    1530
    1631== !__init!__.py file: