adding Makefile.PL, Changes, README and such
[catagits/Web-Session.git] / Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..25064c5
--- /dev/null
@@ -0,0 +1,23 @@
+use strict;
+use warnings;
+use inc::Module::Install;
+
+name 'Plack-Session';
+all_from 'lib/Plack/Session.pm';
+license 'perl';
+
+# prereqs
+requires 'Plack'            => '0.9021';
+requires 'Plack::Request'   => '0.08';
+
+# for session ID gen
+requires 'Digest::SHA'      => '0';
+
+# things the tests need
+build_requires 'Test::More' => '0.88';
+
+tests_recursive;
+auto_install;
+
+WriteAll();
+