1use Module::Build;
2use strict;
3use warnings;
4
5my $build = Module::Build->new(
6	module_name => 'Math::Utils',
7
8	dist_abstract => 'Useful mathematical functions not in Perl',
9	dist_author => ['John M. Gamble <jgamble@cpan.org>'],
10	dist_version => '1.14',
11	dist_name => 'Math-Utils',
12
13	requires => {
14		perl=> '5.10.1',
15	},
16
17	configure_requires => {
18		'Module::Build' => '0.4',
19	},
20
21	build_requires => {
22		'Test::More' => 0
23	},
24
25	license => 'perl',
26	create_license => 1,
27	create_readme => 0,
28	create_makefile_pl => 'traditional',
29	dynamic_config =>0,
30
31	meta_merge => {
32		keywords => [ qw(math math-utils
33				sign gcd logarithm scale softmax
34				comparison polymonial) ],
35		resources => {
36			repository => 'git://github.com/jgamble/Math-Utils.git',
37#			repository => {
38#				url => 'git://github.com/jgamble/Math-Utils',
39#				web => 'https://github.com/jgamble/Math-Utils',
40#				type => 'git',
41#			},
42		},
43	},
44
45);
46
47$build->create_build_script;
48