use Module::Install
[dbsrgits/DBIx-Class-Journal.git] / Makefile.PL
1 use inc::Module::Install 0.89;
2 use strict;
3 use warnings;
4
5 use 5.008001;
6
7 # ****** DO NOT ADD OPTIONAL DEPENDENCIES. EVER. --mst ******
8
9 name     'DBIx-Class-Journal';
10 perl_version '5.008001';
11 all_from 'lib/DBIx/Class/Journal.pm';
12
13
14 test_requires 'Test::TempDir'       => '0.04';
15
16 requires 'DBIx::Class'               => '0.08';
17
18 tests_recursive ('t');
19
20 resources 'license'     => 'http://dev.perl.org/licenses/';
21 resources 'repository'  => 'http://dev.catalyst.perl.org/repos/bast/DBIx-Class-Journal/';
22
23 WriteAll();
24