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

WriteMakefile(
    NAME                => 'List::Util::Superpositions',
    AUTHOR              => 'Richard Soderberg <RSOD@cpan.org>',
    VERSION_FROM        => 'lib/List/Util/Superpositions.pm',
    ABSTRACT_FROM       => 'lib/List/Util/Superpositions.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
	'List::Util' => 0,
	'Quantum::Superpositions' => 0,
	'Exporter::Lite' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'List-Util-Superpositions-*' },
);