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                => 'Dancer::Plugin::Nitesi',
    AUTHOR              => q{Stefan Hornburg (Racke) <racke@linuxia.de>},
    VERSION_FROM        => 'lib/Dancer/Plugin/Nitesi.pm',
    ABSTRACT            => 'Dancer Plugin for Nitesi Open Source Shop Machine',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'Test::Database' => 0,
        'YAML'       => 0,
	'Nitesi'     => 0.0090,
	'Nitesi::DBI' => 0.0091,
        'Dancer'     => 1.3098,
	'Dancer::Plugin::Database' => 0,
        'Business::OnlinePayment' => 3.02,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Dancer-Plugin-Nitesi-*' },
    META_MERGE        => {
        resources => {
            repository  => 'https://github.com/racke/Dancer-Plugin-Nitesi.git',
        },
    },
);