summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: a53ac8fb0db4eaedcfdd691df3a2e3d9aee919cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use inc::Module::Install;
 
name     'Tree-Template-Declare';
license  'perl';
all_from 'lib/Tree/Template/Declare.pm';
 
requires 'Carp'              => 0,
         'Sub::Exporter'     => 0,
         'Devel::Caller'     => 0,
;
 
test_requires 'Test::Most'   => 0,
              'Tree::DAG_Node::XPath' => 0,
;
 
WriteAll;