where_hashpair is better than recurse_where
[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>';
d8cc1792 10resources 'license' => 'http://dev.perl.org/licenses/';
11resources 'repository' => 'git://git.shadowcat.co.uk/dbsrgits/SQL-Abstract.git';
12resources 'bugtracker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Abstract';
d4705371 13
14all_from 'lib/SQL/Abstract.pm';
15
fdfbbc65 16requires 'List::Util' => 0;
17requires 'Scalar::Util' => 0;
bfa1a27b 18requires 'Class::Accessor::Grouped' => 0.10002;
ffce8d5f 19requires 'Getopt::Long::Descriptive' => 0.086;
2fed0b4b 20requires 'Hash::Merge' => 0.12;
d4705371 21
0bf60a86 22test_requires "Test::More" => 0.92;
b7c3526d 23test_requires "Test::Deep" => 0.106;
d4705371 24test_requires "Test::Exception" => 0;
25test_requires "Test::Warn" => 0;
75151f36 26test_requires "Storable" => 0; # for cloning in tests
d4705371 27
0d5df7d6 28no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint';
1dc93d17 29no_index directory => 'examples';
30
ffce8d5f 31install_script 'format-sql';
32
d4705371 33tests_recursive 't';
34
536dbae1 35auto_install();
36
d4705371 37WriteAll();