removing handles for pidfile, we need to make this into a role
[gitmo/MooseX-Daemonize.git] / Makefile.PL
1 # Load the Module::Install bundled in ./inc/
2 use inc::Module::Install;
3
4 # Define metadata
5 name 'MooseX-Daemonize';
6 all_from 'lib/MooseX/Daemonize.pm';
7
8 # Specific dependencies
9 build_requires 'Test::More'  => 0;
10
11 requires 'Proc::Daemon'      => 0;
12 requires 'MooseX::Getopt'    => 0;
13 requires 'Moose'             => 0.20;
14
15 no_index 'directory' => 'examples';
16
17 auto_install;
18 WriteAll;