add more keywords, colors, and indentation rules
[scpubgit/Q-Branch.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;
d4705371 15
54750c7a 16test_requires "Test::More" => 0.96;
d4705371 17test_requires "Test::Exception" => 0;
18test_requires "Test::Warn" => 0;
75151f36 19test_requires "Storable" => 0; # for cloning in tests
d4705371 20
21tests_recursive 't';
22
23WriteAll();