misc minor fixes for C::P::Cache
[catagits/Catalyst-Plugin-Cache.git] / Build.PL
CommitLineData
d6861a7f 1use strict;
2use Module::Build;
3
4my $build = Module::Build->new(
5 create_makefile_pl => 'traditional',
6 license => 'perl',
7 module_name => 'Catalyst::Plugin::Cache',
8 requires => {
9 'perl' => '5.8.1',
10 'Catalyst' => '5.7',
11 'Storable' => 0,
12 'Test::Deep' => 0,
13 'Test::More' => 0,
14 'Test::Exception' => 0,
15 'Task::Weaken' => 0,
887cc08f 16 'Test::use::ok' => 0,
d6861a7f 17 },
18 create_readme => 1,
19 sign => 1,
20);
21$build->create_build_script;
22