convert to Module::Install
[gitmo/Moose-Autobox.git] / Build.PL
diff --git a/Build.PL b/Build.PL
deleted file mode 100644 (file)
index 295bb45..0000000
--- a/Build.PL
+++ /dev/null
@@ -1,27 +0,0 @@
-use Module::Build;
-
-use strict;
-
-my $build = Module::Build->new(
-    module_name => 'Moose::Autobox',
-    license => 'perl',
-    requires => {
-        'autobox'         => '1.22',
-        'Moose'           => '0.34',
-        'Perl6::Junction' => '1.10',
-    },
-    optional => {
-    },
-    build_requires => {
-        'Test::More'      => '0.62',
-        'Test::Exception' => '0.21',
-    },
-    create_makefile_pl => 'traditional',
-    recursive_test_files => 1,
-    add_to_cleanup => [
-        'META.yml', '*.bak', '*.gz', 'Makefile.PL',
-    ],
-);
-
-$build->create_build_script;
-