1use strict;
2use warnings;
3use Module::Build;
4
5my $builder = Module::Build->new(
6    module_name         => 'Crypt::CipherSaber',
7    license             => 'perl',
8    dist_author         => 'chromatic <chromatic@cpan.org>',
9    dist_version_from   => 'lib/Crypt/CipherSaber.pm',
10    requires            =>
11    {
12        'Scalar::Util'  => '1.004002',
13    },
14    build_requires      =>
15    {
16        'Test::Simple'  => '0.60',
17        'Test::Warn'    => '0.30',
18    },
19    add_to_cleanup      => [ 'Crypt-CipherSaber-*' ],
20    create_makefile_pl  => 'traditional',
21);
22
23$builder->create_build_script();
24