initial Makefile.PL
Matt S Trout [Wed, 5 Sep 2012 13:55:40 +0000 (13:55 +0000)]
Makefile.PL [new file with mode: 0644]

diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..f719b51
--- /dev/null
@@ -0,0 +1,21 @@
+use strict;
+use warnings FATAL => 'all';
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+  NAME => 'App-SCS',
+  VERSION => 0,
+  PREREQ_PM => {
+    'Web::Simple' => 0,
+    Moo => 0,
+    'Module::Runtime' => 0,
+    'HTML::Zoom' => 0,
+    'IO::All' => 0,
+    'Text::MultiMarkdown' => 0,
+    'Data::Pond' => 0,
+    'Safe::Isa' => 0,
+    'Syntax::Keyword::Gather' => 0,
+    'Try::Tiny' => 0,
+    JSON => 0,
+  }
+);