-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
21 lines (18 loc) · 781 Bytes
/
Makefile.PL
File metadata and controls
21 lines (18 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use strict;
use warnings;
use inc::Module::Install;
name 'Padre-Plugin-XML';
license 'perl';
author 'Fayland Lam <fayland@gmail.com>';
all_from 'lib/Padre/Plugin/XML.pm';
requires 'Padre' => '0.86';
requires 'WebService::Validator::CSS::W3C' => 0;
requires 'XML::Tidy' => 1,
requires 'XML::LibXML' => '1.67',
test_requires 'Test::More' => '0.47';
no_index 'directory' => qw{ t xt eg share inc};
homepage 'http://padre.perlide.org/';
bugtracker 'http://padre.perlide.org/';
repository 'https://github.com/PadreIDE/Padre-Plugin-XML';
is_padre_plugin; # authors: Install Module::Install::PadrePlugin
WriteAll;