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

use strict;

# Load the Module::Install bundled in ./inc/
use inc::Module::Install;

# The name of your distribution
name		'Math-BigInt-Pari';

# Get most of the details from the primary module
all_from	'lib/Math/BigInt/Pari.pm';

requires	'perl'		=> "5.006002";
requires	'Math::BigInt'	=> '1.999703';
requires	'Math::Pari'	=> '2.010709';

build_requires	'Test::More'	=> 0.62;

license		'perl';

author		'Peter John Acklam <pjacklam@gmail.com>';

sign;

# Generate the Makefile
WriteAll;