Added dep on 5.6.0 and started breakout of request_space()/release_space()
[dbsrgits/DBM-Deep.git] / Build.PL
1 use Module::Build;
2
3 use strict;
4
5 my $build = Module::Build->new(
6     module_name => 'DBM::Deep',
7     license => 'perl',
8     requires => {
9         perl           => '5.6.0',
10         'Digest::MD5'  => '1.00',
11         'Scalar::Util' => '1.14',
12     },
13     optional => {
14     },
15     build_requires => {
16         'Test::More'      => '0.47',
17         'Test::Exception' => '0.21',
18         'File::Temp'      => '0.01',
19     },
20     create_makefile_pl => 'traditional',
21     add_to_cleanup => [
22         'META.yml', '*.bak', '*.gz', 'Makefile.PL', 't/test*.db', 'cover_db'
23     ],
24     test_files => 't/??_*.t',
25 );
26
27 $build->create_build_script;
28