Keep in line with reality
[catagits/XML-Feed.git] / Build.PL
1 # $Id$
2 use Module::Build;
3
4 my $build = Module::Build
5   ->new( module_name   => "XML::Feed",
6          dist_abstract => "XML Syndication Feed Support", 
7          license       => 'perl',
8          script_files  => [ ],
9          requires      => {
10                           'Class::ErrorHandler'        => 0,
11                           'DateTime'                   => 0,
12                           'DateTime::Format::Mail'     => 0,
13                           'DateTime::Format::W3CDTF'   => 0,
14                           'Feed::Find'                 => 0,
15                           'HTML::TokeParser'           => 0,
16                           'List::Util'                 => 0,
17                           'LWP::UserAgent'             => 0,
18                           'Module::Pluggable'          => 0,
19                           'URI::Fetch'                 => 0,
20                           'XML::Atom'                  => '0.32',
21                           'XML::LibXML'                => '1.66',
22                           'XML::RSS'                   => '1.40',
23                           'Test::More'                 => 0,
24                         },
25          create_makefile_pl => 'traditional',
26        );
27
28 $build->create_build_script;
29
30