]> git.donarmstrong.com Git - term-progressbar.git/blob - Makefile.PL
dont include git directorries and files
[term-progressbar.git] / Makefile.PL
1 require 5.006;
2 use strict;
3 use warnings;
4
5 use ExtUtils::MakeMaker;
6
7 WriteMakefile (
8   NAME         => 'Term-ProgressBar',
9   VERSION_FROM => 'lib/Term/ProgressBar.pm',
10   AUTHOR       => 'Martyn J. Pearce ',
11 #  ABSTRACT     => 'provide a progress meter on a standard terminal',
12   PREREQ_PM    => { 
13                      'Class::MethodMaker' => '1.02',
14                      'Term::ReadKey' => '2.14',
15   },
16   BUILD_REQUIRES => {
17                      'Capture::Tiny' => '0.13',
18                      'Test::More'    => '0.80',
19                      'Test::Exception' => '0.31',
20                      'File::Temp'    => 0,
21   },
22 );