misc crap;
[gitmo/Class-MOP.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 WriteMakefile(
3     NAME         => 'Class::MOP',
4     VERSION_FROM => 'lib/Class/MOP.pm', 
5     PREREQ_PM    => {
6         'Test::More'      => 0,
7         'Test::Exception' => 0,
8         'Scalar::Util'    => 0,
9         'Carp'            => 0,
10         'B'               => 0,
11         'Sub::Name'       => 0,        
12     }
13 );