Merge pull request #7 from tokuhirom/master
[catagits/Web-Session.git] / Makefile.PL
CommitLineData
3b4205cd 1use strict;
2use warnings;
3use inc::Module::Install;
4
d94ab365 5name 'Plack-Middleware-Session';
6all_from 'lib/Plack/Middleware/Session.pm';
3b4205cd 7license 'perl';
8
9# prereqs
69c28b0e 10requires 'Plack' => '0.9910';
3b4205cd 11
12# for session ID gen
f5e63248 13requires 'Digest::SHA1' => '0';
3b4205cd 14
15# things the tests need
16build_requires 'Test::More' => '0.88';
6d601172 17build_requires 'Test::Requires' => '0';
91d1d9de 18test_requires 'Test::Fatal';
3b4205cd 19
20tests_recursive;
21auto_install;
22
23WriteAll();
24