summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 5a37bda828680371061986540d1a6d35828cce6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use inc::Module::Install;
 
name     'PPIx-XPath';
license  'perl';
all_from 'lib/PPIx/XPath.pm';
 
requires 'Tree::XPathEngine' => 0,
         'PPI'               => '1.2',
         'Scalar::Util'      => 0,
         'Carp'              => 0,
         'perl'              => '5.6.0',
;
 
test_requires 'Test::Most'   => 0,
;
 
WriteAll;