Merged patched from andyg to throw useful errors during relationship loading
[dbsrgits/DBIx-Class.git] / Build.PL
CommitLineData
5d283305 1use strict;
2use Module::Build;
3
4my %arguments = (
5 create_makefile_pl => 'passthrough',
6 license => 'perl',
7 module_name => 'DBIx::Class',
8 requires => {
bc09ebfa 9 'Data::Page' => 2.00,
227d4dee 10 'DBI' => 0,
11 'UNIVERSAL::require' => 0,
7fa9bab8 12 'Scalar::Util' => 0,
f156b7a3 13 'SQL::Abstract' => 1.20,
14 'SQL::Abstract::Limit' => 0.101,
227d4dee 15 'DBD::SQLite' => 1.08,
75a23b3e 16 'Class::C3' => 0.07,
0e426335 17 'Tie::IxHash' => 0,
75a23b3e 18 'Module::Find' => 0,
19 'Storable' => 0,
c4498268 20 # Following for CDBICompat only
21 'Class::Trigger' => 0,
22 'DBIx::ContextualFetch' => 0,
5d283305 23 },
c1124f19 24 recommends => {
7da9cd47 25 'Data::UUID' => 0,
26 },
5d283305 27 create_makefile_pl => 'passthrough',
28 create_readme => 1,
29 test_files => [ glob('t/*.t'), glob('t/*/*.t') ]
30);
31
32Module::Build->new(%arguments)->create_build_script;
33