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