The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This Makefile.PL for  was generated by Dist::Zilla.
# Don't edit it but the dist.ini used to construct it.
BEGIN { require 5.006_002; }
use strict;
use warnings;
use ExtUtils::MakeMaker 6.30;

my %WriteMakefileArgs = (
  'ABSTRACT' => '*deprecated* - use Moo instead!',
  'AUTHOR' => 'Shawn M Moore <sartak@gmail.com>, Florian Ragwitz <rafl@debian.org>, Stevan Little <stevan@iinteractive.com>, Tokuhiro Matsuno <tokuhirom@gmail.com>, Goro Fuji <gfuji@cpan.org>, Ricardo Signes <rjbs@cpan.org>',
  'BUILD_REQUIRES' => {},
  'CONFIGURE_REQUIRES' => {
    'ExtUtils::MakeMaker' => '6.30'
  },
  'DISTNAME' => 'Any-Moose',
  'EXE_FILES' => [],
  'LICENSE' => 'perl',
  'NAME' => 'Any::Moose',
  'PREREQ_PM' => {},
  'VERSION' => '0.20',
  'test' => {
    'TESTS' => 't/*.t'
  }
);
;

$WriteMakefileArgs{PREREQ_PM} ||= {};

if (eval { require Moose }) {
  # we have any version of Moose; good enough! -- rjbs, 2011-09-15
  # This should fix a crufty edge-case with cpantesting -- bingos, 2011-11-07
  $WriteMakefileArgs{PREREQ_PM}{Moose} = '0';
} else {
  # No Moose?  Well, we need *something* to test with, so we'll ask for the
  # lighter-weight one, Mouse. -- rjbs, 2011-09-15
  $WriteMakefileArgs{PREREQ_PM}{Mouse} = '0.40';
}



unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
  my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
  my $pp = $WriteMakefileArgs{PREREQ_PM};
  for my $mod ( keys %$br ) {
    if ( exists $pp->{$mod} ) {
      $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
    }
    else {
      $pp->{$mod} = $br->{$mod};
    }
  }
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);