adding the some preliminary junk
[gitmo/Class-C3-XS.git] / Build.PL
diff --git a/Build.PL b/Build.PL
new file mode 100644 (file)
index 0000000..4559bb6
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,22 @@
+use Module::Build;
+
+use strict;
+
+my $build = Module::Build->new(
+    module_name => 'Class::C3::XS',
+    license => 'perl',
+    optional => {},
+    build_requires => {
+        'Test::More' => '0.47',
+        'Test::Exception' => 0.15,
+    },
+    create_makefile_pl => 'traditional',
+    create_readme => 1,
+    recursive_test_files => 1,
+    add_to_cleanup => [
+        'META.yml', '*.bak', '*.gz', 'Makefile.PL',
+    ],
+);
+
+$build->create_build_script;
+