get rid of some earlier trash, prepare for putting in the real code
[gitmo/Class-C3-XS.git] / Build.PL
1 use Module::Build;
2
3 use strict;
4
5 my $build = Module::Build->new(
6     module_name => 'Class::C3::XS',
7     license => 'perl',
8     optional => {},
9     build_requires => {
10         'Test::More' => '0.47',
11     },
12     create_makefile_pl => 'traditional',
13     create_readme => 1,
14     recursive_test_files => 1,
15     add_to_cleanup => [
16         'META.yml', '*.bak', '*.gz', 'Makefile.PL',
17     ],
18 );
19
20 $build->create_build_script;
21