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

# Define metadata
name           'IO-Pty-Easy';
all_from       'lib/IO/Pty/Easy.pm';

requires       'IO::Pty';
requires       'Carp';

build_requires 'Test::More';

auto_install;
WriteAll;