The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use strict;
use warnings;
use 5.006;

use ExtUtils::MakeMaker;

WriteMakefile(
    AUTHOR              => 'Barbie <barbie@cpan.org>',
    NAME                => 'Acme-CPANAuthors-CPAN-OneHundred',
    VERSION_FROM        => 'lib/Acme/CPANAuthors/CPAN/OneHundred.pm',
    ABSTRACT            => 'The CPAN Authors who currently have 100 or more distributions on CPAN',
    NO_META             => 1,
    PREREQ_PM => {

        # prereqs
        'Acme::CPANAuthors' => '0.04',

        # build/test prereqs
        'IO::File'          => '0',
        'Test::More'        => '0.70'

    },

    PL_FILES            => {},
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Acme-CPANAuthors-CPAN-OneHundred-*' }
);