The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
    NAME         => 'Mojolicious::Plugin::Libravatar',
    VERSION_FROM => 'lib/Mojolicious/Plugin/Libravatar.pm',
    AUTHOR       => 'William Travis Holton <heytrav@cpan.org>',
    PREREQ_PM    => {
        'Mojolicious'     => 0,
        'Gravatar::URL'   => 0,
        'Libravatar::URL' => 0,
        'Test::Routine'   => 0,
        'Test::Exception' => 0
    },
    test => { TESTS => 't/*.t' }
);