Shush
[catagits/XML-Feed.git] / Build.PL
CommitLineData
fe71566d 1# $Id: Build.PL 918 2004-05-29 17:29:55Z btrott $
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,
18 'URI::Fetch' => 0,
19 'XML::RSS' => 1.01,
20 'XML::Atom' => 0.23,
21 'Test::More' => 0,
22 },
23 create_makefile_pl => 'traditional',
24 );
25
26$build->create_build_script;
27
0d5e38d1 28