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

WriteMakefile(
    NAME                => 'Reddit::Client',
    AUTHOR              => q{"Jeff Ober" <"jeffober@gmail.com">},
    VERSION_FROM        => 'lib/Reddit/Client.pm',
    ABSTRACT_FROM       => 'lib/Reddit/Client.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE'=> 'perl') : ()),
    PL_FILES            => {},

    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Reddit-Client-*' },
    
    PREREQ_PM           => {
        'HTTP::Request'    => 0,
        'JSON'             => 0,
        'List::Util'       => 0,
        'LWP::UserAgent'   => 0,
        'Test::More'       => 0,
        'Test::MockModule' => 0,
        'URI::Encode'      => 0,
    },
);