better bulk insert support
[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;
ffce8d5f 16requires 'Getopt::Long::Descriptive' => 0.086;
2fed0b4b 17requires 'Hash::Merge' => 0.12;
d4705371 18
0bf60a86 19test_requires "Test::More" => 0.92;
b7c3526d 20test_requires "Test::Deep" => 0.106;
d4705371 21test_requires "Test::Exception" => 0;
22test_requires "Test::Warn" => 0;
75151f36 23test_requires "Storable" => 0; # for cloning in tests
d4705371 24
0d5df7d6 25no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint';
1dc93d17 26no_index directory => 'examples';
27
ffce8d5f 28install_script 'format-sql';
29
d4705371 30tests_recursive 't';
31
32WriteAll();