initial import
[Business-OnlinePayment-PaySystems.git] / Makefile.PL
1 use 5.008;
2 use ExtUtils::MakeMaker;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6     NAME              => 'Business::OnlinePayment::PaySystems',
7     VERSION_FROM      => 'lib/Business/OnlinePayment/PaySystems.pm', # finds $VERSION
8     PREREQ_PM         => {Business::OnlinePayment => '2.0',
9                           Business::CreditCard => 0,
10                           Net::SSLeay => '1.25',
11                           Term::ReadLine => 0,
12                           Term::ReadLine::Gnu => 0,
13                           Test::More => 0,}, # e.g., Module::Name => 1.1
14     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
15       (ABSTRACT_FROM  => 'lib/Business/OnlinePayment/PaySystems.pm', # retrieve abstract from module
16        AUTHOR         => 'Support <Support@simplymarketinginc.com>') : ()),
17 );