Subject: | Makefile.PL does not list all prereqs |
Makefile.PL only notes Test::More, but you have the following in the source:
use GD;
use LWP::UserAgent;
use HTTP::Request;
use POSIX qw/floor ceil/;
You should specify these modules in your Makefile.PL. They are not all core modules (such as GD), and it helps automated tools recognize requirements.