summaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: 49da97d9c5773560e2b52c934d7ac9e51547ca77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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';
requires       'POSIX';

build_requires 'Test::More';

auto_install;
WriteAll;