The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use 5.001000;
use ExtUtils::MakeMaker;
use strict;

WriteMakefile(
	NAME              => 'Mojo::SMTP::Client',
	LICENSE           => 'perl',
	VERSION_FROM      => 'lib/Mojo/SMTP/Client.pm', # finds $VERSION
	PREREQ_PM         => { 'Mojolicious' => 5 }, # e.g., Module::Name => 1.1
	BUILD_REQUIRES    => { 'Test::More' => 0.88 },
	CONFIGURE_REQUIRES => {
		'ExtUtils::MakeMaker' => 6.52,
	},
	META_MERGE        => { 
		resources => {repository => 'https://github.com/olegwtf/p5-Mojo-SMTP-Client'},
	},
	ABSTRACT_FROM     => 'lib/Mojo/SMTP/Client.pm', # retrieve abstract from module
	AUTHOR            => 'Oleg G <oleg@cpan.org>'
);