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

require 5.010;

eval "use Test::Manifest 1.21";

WriteMakefile(
	'NAME'	       => 'HTTP::Cookies::Chrome',
	'ABSTRACT'     => 'A subclass of HTTP::Cookies to handle Chrome',
	'VERSION_FROM' => 'lib/HTTP/Cookies/Chrome.pm',
	'LICENSE'      => 'perl',
	'AUTHOR'       => 'brian d foy <bdfoy@cpan.org>',
	
	'PREREQ_PM'    => { 
		'Test::More'    => '0',
		'DBI'           => '0',
		'DBD::SQLite'   => '1.32',
		'POSIX'         => '0',
		'HTTP::Cookies' => '0',
		},

	clean  => { FILES    => q|HTTP-Cookies-Chrome-*| },

	);