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;
use Module::Metadata;

WriteMakefile(
    NAME             => 'Moonshine::Magic',
    AUTHOR           => q{Robert Acock <thisusedtobeanemail@gmail.com>},
    VERSION_FROM     => 'lib/Moonshine/Magic.pm',
    ABSTRACT_FROM    => 'lib/Moonshine/Magic.pm',
    LICENSE          => 'artistic_2',
    PL_FILES         => {},
    MIN_PERL_VERSION => 5.010,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    	'Module::Metadata' => 0,
	},
    BUILD_REQUIRES => {
        'Test::More' => 0,
        'Moonshine::Test' => 0.14,
        'UNIVERSAL::Object' => 0,
        'strict' => 0,
        'warnings' => 0,
    },
    PREREQ_PM => {
        'BEGIN::Lift' => 0.04,
        'MOP' => 0.05,
        'Moonshine::Util' => 0.07,
        'Moonshine::Element' => 0.11,
        'strict' => 0,
        'warnings' => 0,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Moonshine-Magic-*' },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url  => 'https://github.com/ThisUsedToBeAnEmail/Moonshine-Magic.git',
                web  => 'https://github.com/ThisUsedToBeAnEmail/Moonshine-Magic',
            },
        },
    },
    META_ADD => {
        provides => Module::Metadata->provides(version => '2', dir => 'lib'),
    },
);