Tagged 0.981_02
[dbsrgits/DBM-Deep.git] / Build.PL
CommitLineData
ffed8b01 1use Module::Build;
2
3use strict;
4
5my $build = Module::Build->new(
6 module_name => 'DBM::Deep',
7 license => 'perl',
8 requires => {
ffed8b01 9 'Digest::MD5' => '1.00',
3b636d6a 10 'Scalar::Util' => '1.14',
ffed8b01 11 },
12 optional => {
13 },
14 build_requires => {
15 'Test::More' => '0.47',
16 'Test::Exception' => '0.21',
17 },
18 create_makefile_pl => 'traditional',
19 add_to_cleanup => [
12a1e26e 20 'META.yml', '*.bak', '*.gz', 'Makefile.PL', 't/test*.db', 'cover_db',
21 't/*.txt',
ffed8b01 22 ],
2ec46b24 23 test_files => 't/??_*.t',
ffed8b01 24);
25
26$build->create_build_script;
27