Add autofilter to worksheet
[p5sagit/Excel-Template.git] / Makefile.PL
CommitLineData
985519dc 1use inc::Module::Install;
2
3name 'Excel-Template';
4perl_version '5.006';
5all_from 'lib/Excel/Template.pm';
6author q{Rob Kinyon <rob.kinyon@gmail.com>};
7license 'perl';
8resources(
9 repository => {
10 url => 'git://git.shadowcat.co.uk/p5sagit/Excel-Template.git',
11 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Excel-Template.git;a=summary',
12 type => 'git',
13 },
14);
15
16test_requires 'File::Path' => 0;
17test_requires 'File::Temp' => 0;
18test_requires 'Test::Deep' => '0.095';
19test_requires 'Test::More' => '0.47';
20test_requires 'Test::Exception' => '0.21';
21
22requires 'Test::More' => 0;
23requires 'XML::Parser' => 0;
24requires 'IO::Scalar' => 0;
25requires 'File::Basename' => 0;
26requires 'Spreadsheet::WriteExcel' => '0.42';
27requires 'Spreadsheet::WriteExcel::Utility' => 0;
28
29if ($] < 5.008) {
30 print "#\n";
31 print "# Note: If you want to work with Unicode, you will need to install\n";
32 print "# the optional module Unicode::String and set USE_UNICODE to true.\n";
33 print "#\n";
34 recommends 'Unicode::String';
35}
36
37auto_install;
38
39WriteAll;
40