The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;use warnings;
use Module::Build;

my $builder = Module::Build->new(
    sign              => 1,
    module_name       => 'Compare::Directory',
    license           => 'perl',
    dist_author       => q{Mohammad S Anwar <mohammad.anwar@yahoo.com>},
    dist_version_from => 'lib/Compare/Directory.pm',
    add_to_cleanup    => [ 'Compare-Directory-*' ],    
    build_requires    => {
        'Test::More'        => 0,
        'Test::Deep'        => 0,
        'Readonly'          => '1.03',
        'Module::Build'     => '0.36',
        'Test::Excel'       => '1.11',
        'CAM::PDF'          => '1.52',
        'File::Compare'     => '1.1003',
        'XML::SemanticDiff' => '1.0'
    },
);

$builder->create_build_script();