1use strict;
2use Module::Build;
3#created by eumm-migrate.pl
4
5my $build = Module::Build->new(
6  'dist_abstract' => 'Convert dates to seconds since epoch, for arbritrary epochs',
7  'auto_configure_requires' => 0,
8  'license' => 'perl',
9  'dist_author' => 'Eugene van der Pijll (pijll@gmx.net)',
10  'module_name' => 'DateTime::Format::Epoch',
11  'requires' => {
12    'DateTime' => '0.31',
13    'Math::BigInt' => '1.66',
14    'Params::Validate' => 0,
15    'warnings' => 0,
16    'perl' => 5.00503,
17  },
18  'build_requires' => {
19    'Test::More' => 0,
20  },
21  'meta_merge' => {
22    'resources' => {
23      'repository' => 'http://github.com/chorny/DateTime-Format-Epoch'
24    }
25  },
26  'dist_version_from' => 'lib/DateTime/Format/Epoch.pm',
27  create_makefile_pl => 'traditional',
28);
29
30$build->create_build_script();
31