DBIx-Class-UUIDColumns now has it's own working test suite
[dbsrgits/DBIx-Class-UUIDColumns.git] / Build.PL
CommitLineData
bce2eb4d 1use strict;
2use Module::Build;
3
4my %arguments = (
5 create_makefile_pl => 'passthrough',
6 license => 'perl',
773544fd 7 module_name => 'DBIx::Class::UUIDColumns',
bce2eb4d 8 requires => {
773544fd 9 'DBIx::Class' => 0.06002,
bce2eb4d 10 },
11 build_requires => {
12 'DBD::SQLite' => 1.11,
13 },
14 recommends => {
15 'Data::UUID' => 0,
773544fd 16 'APR::UUID' => 0,
17 'UUID' => 0,
18 'Win32::Guidgen' => 0,
19 'Win32API::GUID' => 0,
bce2eb4d 20 },
21 create_makefile_pl => 'passthrough',
22 create_readme => 1,
773544fd 23 test_files => [ glob('t/*.t')]
bce2eb4d 24);
25
26Module::Build->new(%arguments)->create_build_script;
27