The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# $Id: Makefile.PL,v 1.6 2008/01/30 18:05:15 sullivan Exp $

use 5.008;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME              => 'Class::Simple',
    VERSION_FROM      => 'lib/Class/Simple.pm', # finds $VERSION
    PREREQ_PM         =>
	{
		Class::ISA => 0.32,
		Scalar::Util => 0,
		List::Util => 0,
	}, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'lib/Class/Simple.pm', # retrieve abstract from module
       AUTHOR         => 'Michael Sullivan <perldude@mac.com>') : ()),
);