1use ExtUtils::MakeMaker;
2
3# $Id: Makefile.PL,v 1.2 2003/06/25 20:57:27 jonasbn Exp $
4
5WriteMakefile(
6    'NAME'	        => 'Games::Bingo::Bot',
7    'VERSION_FROM'  => 'lib/Games/Bingo/Bot.pm', # finds $VERSION
8	'PREREQ_PM' => {
9		'Test::Harness' => 0,
10		'Test::More'    => 0,
11		'Test::Pod'     => '0.95',
12		'Games::Bingo'	=> '0.05',
13	}
14);
15