The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  NAME         => 'Mojolicious::Plugin::Geo',
  VERSION_FROM => 'lib/Mojolicious/Plugin/Geo.pm',
  AUTHOR       => 'elb0w <elb0w@elbowrage.com>',
  PREREQ_PM    => {'Mojolicious' => '1.78'},
  test         => {TESTS => 't/*.t'}
);