Bump version for release
[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::Entities'             => 0,
16                           'HTML::TokeParser'           => 0,
17                           'List::Util'                 => 0,
18                           'LWP::UserAgent'             => 0,
19                           'Module::Pluggable'          => 0,
20                           'URI::Fetch'                 => 0,
21                           'XML::Atom'                  => '0.38',
22                           'XML::LibXML'                => '1.66',
23                           'XML::RSS'                   => '1.47',
24                           'Test::More'                 => 0,
25                         },
26          create_makefile_pl => 'traditional',
27          meta_merge =>
28          {
29              resources =>
30              {
31                  repository => "https://github.com/davorg/xml-feed",
32              },
33          },
34        );
35
36 $build->create_build_script;
37
38