fix deps
[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;
d4705371 16
0bf60a86 17test_requires "Test::More" => 0.92;
d4705371 18test_requires "Test::Exception" => 0;
19test_requires "Test::Warn" => 0;
75151f36 20test_requires "Storable" => 0; # for cloning in tests
d4705371 21
1dc93d17 22no_index package => 'DBIx::Class::Storage::PrettyPrinter';
23no_index directory => 'examples';
24
d4705371 25tests_recursive 't';
26
27WriteAll();