handle the throw_exception bit. Drop DBIx::Class::Exception
[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,
cb5f2eea 10 'DBI' => 1.40,
227d4dee 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,
b98e75f6 17 'Tie::IxHash' => 0,
75a23b3e 18 'Module::Find' => 0,
19 'Storable' => 0,
3c0068c1 20 'Class::Data::Accessor' => 0.01,
c4498268 21 # Following for CDBICompat only
22 'Class::Trigger' => 0,
23 'DBIx::ContextualFetch' => 0,
701da8c4 24 'Carp::Clan' => 0,
5d283305 25 },
c1124f19 26 recommends => {
7da9cd47 27 'Data::UUID' => 0,
28 },
5d283305 29 create_makefile_pl => 'passthrough',
30 create_readme => 1,
31 test_files => [ glob('t/*.t'), glob('t/*/*.t') ]
32);
33
34Module::Build->new(%arguments)->create_build_script;
35