-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuild.PL
More file actions
34 lines (32 loc) · 746 Bytes
/
Build.PL
File metadata and controls
34 lines (32 loc) · 746 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 Module::Build;
Module::Build -> new
(
module_name => 'Lingua::EN::Fathom',
license => 'perl',
dist_abstract => "Measure readability of English text",
dist_author => 'Kim Ryan <kimryan at cpan org>',
build_requires =>
{
Test::More => 0.94,
Test::Pod => 1.04,
},
configure_requires =>
{
Module::Build => 0.3800,
},
requires =>
{
locale => 1.00,
strict => 1.04,
warnings => 0,
Lingua::EN::Syllable => 0.28,
Lingua::EN::Sentence => 0.28
},
meta_merge =>
{
resources =>
{
repository => 'https://github.com/kimryan/Readability'
}
}
) -> create_build_script();