add skeleton Makefile.PL and VERSION
[p5sagit/Package-Variant.git] / Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..5227b9b
--- /dev/null
@@ -0,0 +1,12 @@
+use strict;
+use warnings FATAL => 'all';
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+  NAME => 'Package-Variant',
+  VERSION_FROM => 'lib/Package/Variant.pm',
+  PREREQ_PM => {
+    strictures => 1,
+    Carp => 0,
+  },
+);