I would like to obtain some values in my platformio.ini
from an external file. Specifically, I would like to obtain lib_deps
from an external file, because this would allow me to streamline CI/CD builds: during normal development I would refer to all libraries without version information, but just before building a distribution I would annotate each external library with @version
so that a release of my software would have the dependencies hard-coded.
Is this possible?