First cut at enclosures
[catagits/XML-Feed.git] / Build.PL
CommitLineData
f3763577 1# $Id$
bfcc8cf0 2use Module::Build;
3
4my $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,
9b6bc912 18 'Module::Pluggable' => 0,
bfcc8cf0 19 'URI::Fetch' => 0,
4ad13011 20 'XML::Atom' => 0.32,
457482da 21 'XML::LibXML' => 1.66,
f62087b4 22 'XML::RSS' => 1.37,
bfcc8cf0 23 'Test::More' => 0,
24 },
25 create_makefile_pl => 'traditional',
26 );
27
28$build->create_build_script;
29
0d5e38d1 30