Changes:
[catagits/Catalyst-Plugin-Scheduler.git] / Build.PL
1 use strict;
2 use Module::Build;
3
4 my $build = Module::Build->new(
5     create_makefile_pl => 'passthrough',
6     license            => 'perl',
7     module_name        => 'Catalyst::Plugin::Scheduler',
8     requires           => { 
9         'Catalyst'              => '5.61',
10         'DateTime::Event::Cron' => 0,
11         'Set::Scalar'           => 0,
12         'Storable'              => 0,
13         'YAML'                  => 0,
14     },
15     create_makefile_pl => 'passthrough',
16     create_readme      => 1,
17     test_files   => [
18         glob('t/*.t') 
19     ]
20 );
21 $build->create_build_script;