projects
/
gitmo/MooseX-AttributeHelpers.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Test the bag's meta
[gitmo/MooseX-AttributeHelpers.git]
/
Makefile.PL
1
#!/usr/bin/perl
2
3
use strict;
4
use warnings;
5
6
use ExtUtils::MakeMaker;
7
WriteMakefile(
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
);