Commit | Line | Data |
5d283305 |
1 | use strict; |
2 | use Module::Build; |
3 | |
4 | my %arguments = ( |
5 | create_makefile_pl => 'passthrough', |
6 | license => 'perl', |
7 | module_name => 'DBIx::Class', |
8 | requires => { |
bc09ebfa |
9 | 'Data::Page' => 2.00, |
7fa9bab8 |
10 | 'Scalar::Util' => 0, |
f156b7a3 |
11 | 'SQL::Abstract' => 1.20, |
12 | 'SQL::Abstract::Limit' => 0.101, |
069dea02 |
13 | 'Class::C3' => 0.11, |
75a23b3e |
14 | 'Storable' => 0, |
3c0068c1 |
15 | 'Class::Data::Accessor' => 0.01, |
ef940582 |
16 | 'Carp::Clan' => 0, |
fc69fea6 |
17 | 'DBI' => 1.40, |
6aaa8ea2 |
18 | 'Module::Find' => 0, |
19 | 'Class::Inspector' => 0, |
5d283305 |
20 | }, |
049b0c85 |
21 | build_requires => { |
3049601e |
22 | 'DBD::SQLite' => 1.11, |
049b0c85 |
23 | }, |
5d283305 |
24 | create_makefile_pl => 'passthrough', |
25 | create_readme => 1, |
5b89a768 |
26 | test_files => [ glob('t/*.t'), glob('t/*/*.t') ], |
27 | script_files => [ glob('script/*') ], |
5d283305 |
28 | ); |
29 | |
30 | Module::Build->new(%arguments)->create_build_script; |
31 | |