Commit | Line | Data |
ffed8b01 |
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 => { |
a8fdabda |
9 | 'perl' => '5.6.0', |
12b96196 |
10 | 'Clone::Any' => '0', |
a8fdabda |
11 | 'Digest::MD5' => '1.00', |
12 | 'Fcntl' => '0.01', |
13 | 'FileHandle::Fmode' => '0.05', |
14 | 'Scalar::Util' => '1.14', |
ffed8b01 |
15 | }, |
16 | optional => { |
17 | }, |
18 | build_requires => { |
d0c365a5 |
19 | 'File::Path' => '0.01', |
20 | 'File::Temp' => '0.01', |
17ca2cc9 |
21 | 'Test::Deep' => '0.095', |
ffed8b01 |
22 | 'Test::More' => '0.47', |
23 | 'Test::Exception' => '0.21', |
24 | }, |
25 | create_makefile_pl => 'traditional', |
26 | add_to_cleanup => [ |
83371fe3 |
27 | 'META.yml', '*.bak', '*.gz', 'Makefile.PL', 't/test*.db', 'cover_db', |
ffed8b01 |
28 | ], |
2ec46b24 |
29 | test_files => 't/??_*.t', |
ffed8b01 |
30 | ); |
31 | |
32 | $build->create_build_script; |