Blame Makefile.PL

Packit ff3280
#!/bin/perl
Packit ff3280
Packit ff3280
use ExtUtils::MakeMaker;
Packit ff3280
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
Packit ff3280
# the contents of the Makefile that is written.
Packit ff3280
WriteMakefile(
Packit ff3280
    'ABSTRACT'        => 'Infinite Sets math',
Packit ff3280
    'AUTHOR'          => 'Flavio S. Glock <fglock@gmail.com>',
Packit ff3280
    'NAME'            => 'Set::Infinite',
Packit ff3280
    'VERSION_FROM'    => 'lib/Set/Infinite.pm',
Packit ff3280
    'EXCLUDE_EXT'     => [ qw(Makefile gz LOG x~~) ],
Packit ff3280
    'PREREQ_PM'       => { 
Packit ff3280
        'Time::Local'   => 0,
Packit ff3280
        'Test::More'    => 0, 
Packit ff3280
    },
Packit ff3280
    'dist'            => { 'COMPRESS' => 'gzip' },
Packit ff3280
);
Packit ff3280