bumped version to 0.06, updated MANIFEST and Changes
[gitmo/Algorithm-C3.git] / Build.PL
1 use Module::Build;
2
3 use strict;
4
5 my $build = Module::Build->new(
6     module_name => 'Algorithm::C3',
7     license => 'perl',
8     requires => {
9         'Carp' => '0.01',
10     },
11     optional => {},
12     build_requires => {
13         'Test::More' => '0.47',
14     },
15     create_makefile_pl => 'traditional',
16     recursive_test_files => 1,
17     add_to_cleanup => [
18         'META.yml', '*.bak', '*.gz', 'Makefile.PL',
19     ],
20 );
21
22 $build->create_build_script;
23