merge configs with profiles
[dbsrgits/SQL-Abstract.git] / Makefile.PL
CommitLineData
6f9458e4 1use inc::Module::Install 1.0;
d4705371 2use strict;
3use warnings;
4
75151f36 5use 5.006002;
d4705371 6
75151f36 7perl_version '5.006002';
d4705371 8name 'SQL-Abstract';
4f0516bc 9author 'Nathan Wiger <nate@wiger.org>';
d4705371 10
11all_from 'lib/SQL/Abstract.pm';
12
fdfbbc65 13requires 'List::Util' => 0;
14requires 'Scalar::Util' => 0;
0bf60a86 15requires 'Class::Accessor::Grouped' => 0.09005;
2fed0b4b 16requires 'Hash::Merge' => 0.12;
d4705371 17
0bf60a86 18test_requires "Test::More" => 0.92;
d4705371 19test_requires "Test::Exception" => 0;
20test_requires "Test::Warn" => 0;
75151f36 21test_requires "Storable" => 0; # for cloning in tests
d4705371 22
0d5df7d6 23no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint';
1dc93d17 24no_index directory => 'examples';
25
d4705371 26tests_recursive 't';
27
28WriteAll();