1#!/usr/bin/perl
2
3use 5.006;
4use strict;
5
6use Module::Build;
7
8my $b = Module::Build->new(
9	'module_name'	=> 'Graphics::ColorNames::WWW',
10	'license'	=> 'perl',
11
12	'sign'		=> 1,
13	'create_license' => 1,
14	'create_makefile_pl' => 'traditional',
15
16    	'requires'	=> {
17		'Graphics::ColorNames'	=> 0.32,
18	},
19	'build_requires' => {
20		'Test::More' => 0,
21		'Test::NoWarnings' => 0,
22	},
23	'resources' => {
24		'homepage' => 'http://search.cpan.org/dist/Graphics-ColorNames-WWW',
25		'repository' => 'http://github.com/cfaerber/Graphics-ColorNames-WWW',
26	},
27);
28
29$b->create_build_script;
30