1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4WriteMakefile(
5    'NAME'		=> 'Math::Sequence',
6    'VERSION_FROM'	=> 'lib/Math/Sequence.pm', # finds $VERSION
7    'PREREQ_PM'		=> {
8	    Math::Symbolic => 0.128,
9	    Parse::RecDescent => 1.8,
10	    Test::More => 0.44,
11    }, # e.g., Module::Name => 1.1
12    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
13      (ABSTRACT_FROM => 'lib/Math/Sequence.pm', # retrieve abstract from module
14       AUTHOR     => 'Steffen Mueller <sequence-module at steffen-mueller dot net>') : ()),
15);
16