Hi all,I was hoping someone could fill me in on how I can properly seperate my python addins' business logic and the main add-in script.The config.xml file lists:<AddIn language="PYTHON" library="PythonAddIn_addin.py" namespace="PythonAddIn_addin">
in its top most level. My library will contain more than just the default PythonAddIn_addin.py file.Ideally, I would like to be able to:from Install.businesslogic import Analytics
to import my business logic function definition Analytics().Currently, this breaks my application, while keeping all the needed code within the PythonAddIn_addin.py file works. The moment I try to import code from a relative path (within the Install folder), the add-in breaks.Ideas? I couldn't live with all my business logic sitting inside the PythonAddIn_addin.py file... its getting huge.Cheers,Michael