The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

use utf8;
use 5.006;
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Math::GComplex',
    license             => 'artistic_2',
    dist_author         => q{Daniel Șuteu <trizen@protonmail.com>},
    dist_version_from   => 'lib/Math/GComplex.pm',
    release_status      => 'stable',

    meta_merge => {
                   resources => {
                                 bugtracker => "https://github.com/trizen/Math-GComplex/issues",
                                 homepage   => "https://github.com/trizen/Math-GComplex",
                                 repository => "https://github.com/trizen/Math-GComplex",
                                },
                  },

    configure_requires => {
        'Module::Build' => '0',
    },
    build_requires => {
        'Test::More' => '0',
    },
    requires => {
        perl => '5.010',
    },
    recommends => {
        'Math::AnyNum' => '0.20',
    },
    add_to_cleanup     => [ 'Math-GComplex-*' ],
    create_makefile_pl => 'traditional',
);

$builder->create_build_script();