The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker 6.46;

require 5.008;

eval "use Test::Manifest 1.21";

WriteMakefile(
	'NAME'          => 'Tie::Timely',
	'ABSTRACT'      => 'Expiring scalar values',
	'VERSION_FROM'  => 'lib/Tie/Timely.pm',
	'LICENSE'       => 'perl',
	'AUTHOR'        => 'brian d foy <bdfoy@cpan.org>',

	'PREREQ_PM'		=> {
		'Test::More'       => '0.95',
		'Carp'             => '0',
		},

	'clean' => { FILES => 'Tie-*' },

	'META_MERGE' => {
        'meta-spec' => { version => 2 },
		resources => {
			repository => {
				type => 'git',
				url  => 'git@github.com:briandfoy/tie-timely.git',
				web  => 'https://github.com/briandfoy/tie-timely',
				},
			},
		},

	);