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                => 'Net::Fluidinfo',
    AUTHOR              => q{Xavier Noria <fxn@cpan.org>},
    VERSION_FROM        => 'lib/Net/Fluidinfo.pm',
    ABSTRACT_FROM       => 'lib/Net/Fluidinfo.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES=> {},
    PREREQ_PM => {
        'Test::Simple'           => '0.87', # because of done_testing()
        'LWP'                    => 0,
        'Moose'                  => 0,
        'MooseX::ClassAttribute' => 0,
        'JSON::XS'               => 0,
        'Digest::MD5'            => 0
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Net-Fluidinfo-*' },
);