rename DBIC::Storage::PP and get ready to re-release
[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
17 test_requires "Test::More"      => 0.92;
18 test_requires "Test::Exception" => 0;
19 test_requires "Test::Warn"      => 0;
20 test_requires "Storable"        => 0;   # for cloning in tests
21
22 no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint';
23 no_index directory => 'examples';
24
25 tests_recursive 't';
26
27 WriteAll();