make format-sql actually useful
[scpubgit/Q-Branch.git] / Makefile.PL
1 use inc::Module::Install 1.0;
2 use strict;
3 use warnings;
4
5 use 5.006002;
6
7 perl_version '5.006002';
8 name 'SQL-Abstract';
9 author 'Nathan Wiger <nate@wiger.org>';
10
11 all_from 'lib/SQL/Abstract.pm';
12
13 requires 'List::Util'   => 0;
14 requires 'Scalar::Util' => 0;
15 requires 'Class::Accessor::Grouped' => 0.09005;
16 requires 'Getopt::Long::Descriptive' => 0.086;
17 requires 'Hash::Merge' => 0.12;
18
19 test_requires "Test::More"      => 0.92;
20 test_requires "Test::Deep"      => 0.106;
21 test_requires "Test::Exception" => 0;
22 test_requires "Test::Warn"      => 0;
23 test_requires "Storable"        => 0;   # for cloning in tests
24
25 no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint';
26 no_index directory => 'examples';
27
28 install_script 'format-sql';
29
30 tests_recursive 't';
31
32 WriteAll();