Added more stringent tests to the multilevel transactions and started the release...
[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 => {
b48ae6ec 9 'perl' => '5.006_000',
a8fdabda 10 'Fcntl' => '0.01',
a8fdabda 11 'Scalar::Util' => '1.14',
99cf59fd 12 'Digest::MD5' => '1.00',
13 'FileHandle::Fmode' => '0.05',
ffed8b01 14 },
15 optional => {
16 },
17 build_requires => {
d0c365a5 18 'File::Path' => '0.01',
19 'File::Temp' => '0.01',
17ca2cc9 20 'Test::Deep' => '0.095',
f72b2dfb 21 'Test::Warn' => '0.08',
ffed8b01 22 'Test::More' => '0.47',
23 'Test::Exception' => '0.21',
fbd470e4 24 'IO::Scalar' => '0.01',
ffed8b01 25 },
26 create_makefile_pl => 'traditional',
27 add_to_cleanup => [
99cf59fd 28 'META.yml', '*.bak', '*.gz', 'Makefile.PL', 'cover_db',
ffed8b01 29 ],
2ec46b24 30 test_files => 't/??_*.t',
ffed8b01 31);
32
33$build->create_build_script;