Bump trunk version
[dbsrgits/SQL-Abstract.git] / Makefile.PL
CommitLineData
d4705371 1use inc::Module::Install 0.79;
2use strict;
3use warnings;
4
5use 5.006001;
6
7perl_version '5.006001';
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;
15requires 'Storable' => 0;
d4705371 16
17test_requires "Test::Builder" => 0;
d4705371 18test_requires "Test::More" => 0;
19test_requires "Test::Exception" => 0;
20test_requires "Test::Warn" => 0;
21
22tests_recursive 't';
23
24WriteAll();