aboutsummaryrefslogtreecommitdiff
path: root/Build.PL
blob: f14742c9bed4412152e8b3ea2797471f771dca38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl 
use Module::Build;
 
my $build=Module::Build->new(
    module_name => 'WebCoso',
    license => 'GPL',
    requires => {
        Class::Std => 0,
        Path::Class => 0,
        Exporter::Lite => 0,
    },
    build_requires => {
        Test::More => 0,
    },
);
$build->create_build_script();