1use ExtUtils::MakeMaker;
2
3WriteMakefile(
4    NAME         => 'DateTime::Format::Strptime',
5    VERSION_FROM => 'lib/DateTime/Format/Strptime.pm', # finds $VERSION
6    AUTHOR       => 'Rick Measham (rickm@cpan.org)',
7    ABSTRACT     => 'Parse and format strp and strf time patterns',
8    PREREQ_PM    => {
9       'DateTime'           => '0.1402',
10       'DateTime::Locale'   => '0.02',
11       'DateTime::TimeZone' => '0.25',
12       'Params::Validate'   => '0.64',
13    },
14);
15