0.01
[Net-Artera.git] / Makefile.PL
1 use 5.005;
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              => 'Net::Artera',
7     VERSION_FROM      => 'lib/Net/Artera.pm', # finds $VERSION
8     PREREQ_PM         => {
9                            'LWP::UserAgent'  => 0,
10                            'Crypt::SSLeay'   => 0,
11                            'XML::Simple'     => 0,
12                            'Data::Dumper'    => 0,
13                            'Locale::Country' => 0,
14                          }, # e.g., Module::Name => 1.1
15     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
16       (ABSTRACT_FROM  => 'lib/Net/Artera.pm', # retrieve abstract from module
17        AUTHOR         => 'Ivan Kohler <ivan-net-artera@420.am>') : ()),
18 );