The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;

(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';

WriteMakefile(
  NAME => 'MooX::SetOnce',
  VERSION_FROM => 'lib/MooX/SetOnce.pm',

  PREREQ_PM => {
    'Moo' => 1.002000,
    'Class::Method::Modifiers' => 1.05,
    'strictures' => 1,
  },
  'BUILD_REQUIRES' => {
    'Test::More' => 0.94,
    'Test::Fatal' => 0,
  },

  META_MERGE => {
    requires => {
      perl => 5.008001,
    },
    dynamic_config => 0,
    resources => {
      repository => 'git://github.com/haarg/MooX-SetOnce.git',
      homepage => 'http://github.com/haarg/MooX-SetOnce',
    },
  },
);