]> git.donarmstrong.com Git - term-progressbar.git/blob - Makefile.PL
Update the version number since we're going to make changes.
[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   ABSTRACT_FROM => 'lib/Term/ProgressBar.pm',
11   AUTHOR       => 'Martyn J. Pearce',
12   LICENSE      => 'perl',
13   PREREQ_PM    => { 
14     'Class::MethodMaker' => '1.02',
15     'Term::ReadKey' => '2.14',
16
17     'Carp'  => 0,
18     'Fatal' => 0,
19     'POSIX' => 0,
20   },
21   BUILD_REQUIRES => {
22                      'Capture::Tiny' => '0.13',
23                      'Test::More'    => '0.80',
24                      'Test::Exception' => '0.31',
25                      'File::Temp'    => 0,
26   },
27   META_MERGE        => {
28        resources => {
29            repository  =>  'https://github.com/szabgab/Term-ProgressBar',
30        },
31   },
32 );