Switched to Module::Install
[catagits/HTTP-Body.git] / Makefile.PL
1 #!perl
2
3 use inc::Module::Install;
4
5 name 'HTTP-Body';
6 all_from 'lib/HTTP/Body.pm';
7
8 requires 'Carp';
9 requires 'File::Temp' => '0.14';
10 requires 'HTTP::Headers';
11 requires 'IO::File';
12
13 test_requires 'Test::More' => '0.86';
14 test_requires 'Test::Deep';
15
16 WriteAll;