Trait::Collection::Bag
[gitmo/MooseX-AttributeHelpers.git] / Makefile.PL
CommitLineData
169f94b9 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use ExtUtils::MakeMaker;
7WriteMakefile(
8 'NAME' => 'MooseX::AttributeHelpers',
9 'VERSION_FROM' => 'lib/MooseX/AttributeHelpers.pm',
10 'PREREQ_PM' => {
11 'Class::MOP' => '0.47',
12 'Moose' => '0.30',
13 'Test::Exception' => '0.21',
14 'Test::More' => '0.62'
15 },
16 'INSTALLDIRS' => 'site',
17 'EXE_FILES' => [],
18 'PL_FILES' => {}
19);