summaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: 557dd88c134d4230bb431d81848340678974c248 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;

# Define metadata
name           'Games-Word';
all_from       'lib/Games/Word.pm';

requires       'Math::Combinatorics';
requires       'Test::Deep::NoTest';
requires       'List::MoreUtils';

build_requires 'Test::More';
build_requires 'Test::Exception';
build_requires 'Test::Deep';
build_requires 'List::Util';

auto_install;
WriteAll;