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

use 5.10.1;

WriteMakefile(
	NAME            => 'SQL::Bibliosoph',
	VERSION_FROM    => 'lib/SQL/Bibliosoph.pm',
	AUTHOR			=> 'Matias Alejo Garcia ( matiu@cpan.org ) ',
	ABSTRACT		=> 'A SQL Query library',
    PREREQ_PM 	   	=> {
            'DBI' 				=> 1.5,
            'DBD::mysql' 		=> 4.004,
            'Test::More' 	    => 0.88,
            'Tie::Array::Random'=> 1.0,
            'Tie::Hash::Random' => 1.0,
			'Moose'             => 0.82,
            'DBD::Mock'         => 1.43,
			'Time::HiRes'       => 1.97,
			'Carp'				=> 1.25,
			'Package::Constants'=> 0.02,
            'Digest::MD5'       => 2.39,
            'Cache::Memcached::Fast' => 0.17,
            'Storable'          => 2.30,
            'Exception::Class'  => 1.30,
        },
    MIN_PERL_VERSION => '5.10.0',
);