I'm trying to use sumatra to run this example command:
python -m some.module --param1 10
I have created a default.param file with the following content:
m = some.module
param1 = 10
However, when I tried to run with smt run default.param, sumatra required a main file.
Is it possible to run sumatra without a main file using python -m?
I could have written a main file but it would break a lot of things in my project.