summaryrefslogtreecommitdiff
path: root/Build.PL
blob: b0141503aaaaefb4e6a34e2a7e712dcc0a152058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env perl

use strict;
use warnings;
use Module::Build;

Module::Build->new(

	build_requires => {
		'Test::More' => 0,
		'Test::Compile' => 0,
		'Test::Pod' => 0,
	},
	module_name => 'Travel::Routing::DE::VRR',
	license => 'unrestricted',
	requires => {
		'perl' => '5.10.0',
		'Class::Accessor' => 0,
		'Exception::Class' => 0,
		'Getopt::Long' => 0,
		'XML::LibXML' => 0,
		'WWW::Mechanize' => 0,
	},
	sign => 1,

)->create_build_script();