Problem: Installing package with executable scripts means that the config path "." or __file__ points to envs/acegen/bin/ which does not contain the default config files.
Fix:
Identify the config path via importlib i.e., as a resource in the package and /scripts/*/
Moved scripts to acegen/scripts to keep namespace clean, resulting in config paths being acegen.scripts.* as opposed to just scripts.* which is ambiguous and non-specific
Problem: Installing package with executable scripts means that the config path "." or __file__ points to
envs/acegen/bin/
which does not contain the default config files.Fix:
/scripts/*/
acegen.scripts.*
as opposed to justscripts.*
which is ambiguous and non-specific