The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use 5.8.0;
use Module::Build;

my $b = Module::Build->new(
  configure_requires => {'Module::Build'=>0.4224},
  create_readme      =>  0,
  dist_abstract      => 'Write data in tabular text format',
  license            => 'perl',
  module_name        => 'Data::Table::Text',
  perl               => '5.8.0',
  requires           => {
     Carp            => 0,
     Cwd             => 0,
    'Data::Dump'     => 0,
    'Exporter'       => 0,
    'File::Glob'     => 1.17,
    'File::Path'     => 0,
    'File::Temp'     => 0,
     JSON            => 0,
     POSIX           => 0,
    'String::Numeric'=> 0,
    'Time::HiRes'    => 0,
    'Test::More'     => 0,
    'Test2::API'     => 0,
     utf8            => 0,
   },
 );

$b->create_build_script();