foo
[gitmo/Moose-Autobox.git] / Build.PL
diff --git a/Build.PL b/Build.PL
new file mode 100644 (file)
index 0000000..7d0b930
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,26 @@
+use Module::Build;
+
+use strict;
+
+my $build = Module::Build->new(
+    module_name => 'Moose::Autobox',
+    license => 'perl',
+    requires => {
+        'autobox' => '1.03',
+        'Moose'   => '0.09_02',
+    },
+    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;
+