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::RenderFile',
    VERSION_FROM     => 'lib/Mojolicious/Plugin/RenderFile.pm',
    AUTHOR           => 'Viktor Turskyi <koorchik@cpan.org>',
    MIN_PERL_VERSION => 5.010,
    PREREQ_PM        => { 'Mojolicious' => '5.78' },
    META_MERGE       => {
        resources => {
            repository => 'https://github.com/koorchik/Mojolicious-Plugin-RenderFile',
        },
    },
    test             => { TESTS => 't/*.t' },
);