The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;

# Define metadata
name           'Date-Extract';
all_from       'lib/Date/Extract.pm';

requires       'List::Util';
requires       'Carp';

# 0.60 adds time zone handling
requires       'DateTime::Format::Natural' => '0.60';

requires       'parent';
requires       'Class::Data::Inheritable';

build_requires 'Test::More';
build_requires 'Test::MockTime';

auto_install;
WriteAll;