skeleton checkin, largely stolen from DBIx::Class::Partitioned
[dbsrgits/DBIx-Class-Fixtures.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'DBIx::Class::Fixtures',
7     AUTHOR              => 'Luke Saunders <luke@shadowcatsystems.co.uk>',
8     VERSION_FROM        => 'lib/DBIx/Class/Fixtures.pm',
9     PL_FILES            => {},
10     PREREQ_PM => {
11         'Test::More' => 0,
12     },
13     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
14     clean               => { FILES => 'DBIx-Class-Fixtures-*' },
15 );