Polyglot has asked for the wisdom of the Perl Monks concerning the following question:
According to the h2xs utility, the README file should contain a list of the module's dependencies. I have a hard time thinking such things as use strict; should need to be listed, but what about require Exporter;?
If my dependencies are strictly limited to the following, which of these, if any, should be listed in the README file?
use 5.008003; use strict; use warnings; require Exporter;
I would think these are all virtually taken for granted, and ubiquitous on ordinary installations of Perl. Do I still list them? If not, do I report "No dependencies"? (That doesn't seem quite accurate, either.) What is considered the best practice here?
Blessings,
~Polyglot~
|
---|