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(
  DISTNAME  => 'Parse-Constructor-Arguments',
  NAME      => 'Parse::Constructor::Arguments',
  AUTHOR    => 'Nicholas\ Perez\ \<nperez\@cpan\.org\>',
  ABSTRACT  => 'A PPI based module for parsing Moose-style constructor arguments',
  VERSION   => '0.091510',
  EXE_FILES => [ qw() ],
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
  PREREQ_PM    => {
    "PPI" => '1.203',
    "Test::Exception" => '0.27',
    "MooseX::Declare" => '0.22',
    "Moose" => '0.79',
  },
);