Codebase list libany-moose-perl / upstream/0.10 Makefile.PL
upstream/0.10

Tree @upstream/0.10 (Download .tar.gz)

Makefile.PL @upstream/0.10raw · history · blame

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  DISTNAME  => 'Any-Moose',
  NAME      => 'Any::Moose',
  AUTHOR    => 'Shawn\ M\ Moore\ \<sartak\@bestpractical\.com\>\,\ Florian\ Ragwitz\ \<rafl\@debian\.org\>\,\ Stevan\ Little\ \<stevan\@iinteractive\.com\>\,\ Tokuhiro\ Matsuno\ \<tokuhirom\@gmail\.com\>',
  ABSTRACT  => 'use\ Moose\ or\ Mouse\ modules',
  VERSION   => '0.10',
  EXE_FILES => [ qw() ],
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
  PREREQ_PM    => {
    "Mouse" => '0.21',
  },
);