Added files and deps for SQL backend. THIS STILL NEEDS LOTS OF WORK AND WILL LIKELY...
[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 => {
2120a181 9 'perl' => '5.006_000',
a8fdabda 10 'Fcntl' => '0.01',
a8fdabda 11 'Scalar::Util' => '1.14',
e00d0eb3 12 'Digest::MD5' => '1.00',
ffed8b01 13 },
4f0f6fff 14 recommends => {
15 'DBIx::Abstract' => '1.006',
16 'Storable' => '2.21',
17 },
ffed8b01 18 build_requires => {
d0c365a5 19 'File::Path' => '0.01',
20 'File::Temp' => '0.01',
d245280e 21 'Pod::Usage' => '1.3',
17ca2cc9 22 'Test::Deep' => '0.095',
e9b0b5f0 23 'Test::Warn' => '0.08',
314dafef 24 'Test::More' => '0.61',
ffed8b01 25 'Test::Exception' => '0.21',
151e0077 26 'IO::Scalar' => '0.01',
ffed8b01 27 },
28 create_makefile_pl => 'traditional',
29 add_to_cleanup => [
e00d0eb3 30 'META.yml', '*.bak', '*.gz', 'Makefile.PL', 'cover_db',
ffed8b01 31 ],
2ec46b24 32 test_files => 't/??_*.t',
ffed8b01 33);
34
35$build->create_build_script;