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

use ExtUtils::MakeMaker;
use 5.004;
use strict;
use warnings;
my %requires = (
                 'File::Basename'           => '0',
                 'IO::File'                 => '0',
               );


WriteMakefile(
        NAME             => 'Test::Inter',
        VERSION          => '1.05',
        ($] >= 5.004
        ? (ABSTRACT=>'framework for more readable interactive test scripts',
           AUTHOR  =>'Sullivan Beck (sbeck@cpan.org)')
        : ()),
        'dist' => {COMPRESS=>'gzip',SUFFIX=>'gz'},
        PL_FILES  => {},
        PREREQ_PM => \%requires,
);