-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
34 lines (31 loc) · 793 Bytes
/
Build.PL
File metadata and controls
34 lines (31 loc) · 793 Bytes
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
use Modern::Perl;
use Module::Build;
my $build = Module::Build->new(
module_name => 'KeywordsSpider',
license => 'perl',
dist_author => 'Katarina Durechova <durechova@ynet.sk>',
dist_abstract => 'web spider searching for keywords',
dist_version => '0',
meta_merge => {
resources => {
repository => 'https://github.com/katkad/KeywordsSpider',
}
},
requires => {
'Modern::Perl' => 0,
'Parallel::ForkManager' => 0,
'Moose' => 0,
'MooseX::UndefTolerant' => 0,
'Data::Dumper' => 0,
'LWP::UserAgent' => 0,
'HTTP::Request::Common' => 0,
'HTTP::Cookies' => 0,
'HTML::TreeBuilder' => 0,
},
build_requires => {
'Test::Spec' => 0,
'Test::MockObject' => 0,
'Test::Spec::Mocks' => 0,
},
);
$build->create_build_script;