Commented out _cond_value code in InflateColumn - currently doesn't get called!
[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 => {
9 'DBI' => 0,
10 'NEXT' => 0,
944f30bf 11 'SQL::Abstract' => 1.19,
6eec7501 12 'DBD::SQLite' => 1.08,
13 'Tie::IxHash' => 0,
5d283305 14 },
15 create_makefile_pl => 'passthrough',
16 create_readme => 1,
17 test_files => [ glob('t/*.t'), glob('t/*/*.t') ]
18);
19
20Module::Build->new(%arguments)->create_build_script;
21