Makefile.PL and $VERSION
[scpubgit/SCS.git] / Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..5a4754c
--- /dev/null
@@ -0,0 +1,20 @@
+use strict;
+use warnings FATAL => 'all';
+use 5.008001;
+use ExtUtils::MakeMaker;
+
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
+WriteMakefile(
+  NAME => 'SCS',
+  VERSION_FROM => 'lib/SCSite.pm',
+  PREREQ_PM => {
+    'Web::Simple' => '0.009',
+    'Moo' => '0.009005',
+    'Syntax::Keyword::Gather' => '1.001',
+    'IO::All' => '0.44',
+    'JSON' => '2.50',
+    'Text::MultiMarkdown' => '1.000033',
+    'HTML::Zoom' => '0.009006',
+  },
+);