Subject: | Missing ABSTRACT and LICENSE in META.yml |
Hi there.
Just thought I'd point out that you're missing ABSTRACT and LICENSE fields in META.yml , and that it would be nice if you could at some future release populate these fields, as it helps anything working with your module via the MetaCPAN API ( such as metacpan.org itself )
Examples are the License field on this page: https://metacpan.org/module/Acme::Damn and the description field on this page: https://metacpan.org/author/IBB
ie: in Makefile.PL , add either
ABSTRACT => " 'Unbless' Perl objects",
LICENSE => 'perl',
or
ABSTRACT_FROM => 'Damn.pm',
LICENSE => 'perl',
Aught to do the trick.
Thanks =).