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

WriteMakefile(
    NAME          => 'Algorithm::SIN',
    AUTHOR        => q{Mohammad S Anwar <mohammad.anwar@yahoo.com>},
    VERSION_FROM  => 'lib/Algorithm/SIN.pm',
    ABSTRACT_FROM => 'lib/Algorithm/SIN.pm',
    dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean         => { FILES => 'Algorithm-SIN-*' },
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PREREQ_PM     => {
        'Test::More' => 0,
        'Readonly'   => '1.03',
    },
);