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