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 './inc';

use Test::Run::Builder;

my $builder = Test::Run::Builder->new(
    module_name         => 'Math::GrahamFunction',
    license             => 'mit',
    dist_author         => 'Shlomi Fish <shlomif@cpan.org>',
    dist_version_from   => 'lib/Math/GrahamFunction.pm',
    build_requires => {
        'Test::More' => 0,
    },
    requires => {
        'Class::Accessor' => 0,
        'List::Util' => 0,
    },
    add_to_cleanup      => [ 'Math::GrahamFunction-*' ],
    meta_merge =>
    {
        resources =>
        {
            repository => "http://svn.berlios.de/svnroot/repos/web-cpan/Math-GrahamFunction/trunk/modules/Math-GrahamFunction",
        },
        keywords =>
        [
            "factors",
            "fun",
            "function",
            "graham",
            "math",
            "mathematics",
            "maths",
            "mjd",
            "obscure",
            "pure-perl",
            "riddle",
            "riddles",
            "quizzes",
            "qotw",
            "quiz",
            "quiz-of-the-week",
            "square",
            "week",
        ],
    },
);

$builder->create_build_script();