-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
46 lines (41 loc) · 1.25 KB
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
################
# Created by: setitesuk
# Created on: 2009-11-06
use strict;
use warnings;
use Module::Build;
use lib qw(. lib);
our $VERSION = 0.5;
my $builder = Module::Build->new(
module_name => 'Test::WWW::Selenium::Conversion::IDE',
dist_author => q(Andy Brown <setitesuk@gmail.com>),
dist_version => $VERSION,
dist_abstract => q[module to during a test run convert on the fly Selenese IDE html to perl tests],
license => 'lgpl3',
requires => {
'XML::LibXML' => 0,
'Exporter' => 0,
'Test::WWW::Selenium' => 0,
'Test::More' => '0.8',
'Readonly' => 0,
'Carp' => 0,
'English' => 0,
},
recommends => {
},
build_requires => {
'Test::Exception' => 0,
'JSON' => 0,
'Test::MockObject' => 0,
},
build_recommends => {
'Test::Perl::Critic' => '1.116',
'Test::Distribution' => 0,
'Test::Kwalitee' => 0,
'Test::Pod' => 0,
'Test::Pod::Coverage' => 1.00,
},
create_makefile_pl => 'small',
configure_requires => { 'Module::Build' => 0.3603 }
);
$builder->create_build_script();