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

my $builder = Module::Build->new(
    module_name   => 'Lingua::Stem::UniNE',
    license       => 'perl',
    create_readme => 1,
    configure_requires => {
        'Module::Build' => '0.36',
    },
    build_requires => {
        'Pod::Man'     => '2.04',
        'String::Dump' => '0.05',
        'Test::More'   => '0.82',
    },
    requires => {
        'perl'      => '5.8.0',  # minimum Unicode support
        'charnames' => 0,
        'parent'    => 0,
        'strict'    => 0,
        'utf8'      => 0,
        'warnings'  => 0,
        'Carp'      => 0,
        'Moo'       => '1.000000',
    },
    meta_merge => {
        resources => {
            repository => 'git://github.com/patch/lingua-stem-unine-pm5.git',
            homepage   => 'https://github.com/patch/lingua-stem-unine-pm5',
            bugtracker => 'https://github.com/patch/lingua-stem-unine-pm5/issues',
        },
    },
);

$builder->create_build_script;