The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Module::Build;
my $b= Module::Build->new(
        module_name        => 'IO::Infiles',
        dist_version_from  => 'lib/IO/Infiles.pm',
        dist_author        => 'Ioannis Tambouras <ioannis@cpan.org>',
        requires           => {  perl                => '5.008',
                              },
        recommends         => { 
                                'Test::Pod'           => '1.45',
                                'Test::Pod::Coverage' => '1.08',
								'Test::HasVersion'    => '0.012',
								'Test::CPAN::Meta'    => '0.18',
                                'Test::Exception'     => '0.31',
								'Test::Distribution'  => '2.00',
								'Test::Dependencies'  => '0.12',
								'Test::MinimumVersion'=> '0.101080',
								'Test::Strict'        => '0.14',
								'Test::Spelling'      => '0.15',
								'Test::Legal'         => '0.10',
                              },
        license            => 'perl',
        #create_makefile_pl=> 'traditional',
        #create_readme     => 1,
);

$b->create_build_script;