Makefile.PL
[gitmo/Moo.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6   NAME => 'Moo',
7   VERSION_FROM => 'lib/Moo.pm',
8   ABSTRACT_FROM => 'lib/Moo.pm',
9   AUTHOR => 'Matt S Trout <mst@shadowcat.co.uk>',
10   LICENSE => 'perl',
11 );