With pip you are able to create a requirements file to specify which libraries to install. Is there an equivalent for perl modules using CPAN?
I came across ExtUtils::MakeMaker, but this seems like the make file is for each module specifically.
I guess to try and give a better idea of what I am asking is if there is a way to do something like
cpan install -r requirements.txt
and then specify which modules to install in that requirements file.
Thanks in advance!