[SOLVED] Adding custom functions to setuphelpers
Published: March 2, 2023 - 11:36
Good morning,
I would like to create additional functions that I could use with any package using imports.
For example, if I create a functions.py file with all my custom functions in it, I would then like to be able to use them by doing the following in my package:
How can I implement this without creating a functions file for each package, please?
Is it possible to modify the setuphelpers to add these functions?
Thank you in advance for your feedback.
I would like to create additional functions that I could use with any package using imports.
For example, if I create a functions.py file with all my custom functions in it, I would then like to be able to use them by doing the following in my package:
Code: Select all
from functions import ma_fonction
Is it possible to modify the setuphelpers to add these functions?
Thank you in advance for your feedback.