The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

use strict;

use ExtUtils::MakeMaker;

WriteMakefile(
	NAME         => 'MooseX::App::Cmd',
	VERSION_FROM => 'lib/MooseX/App/Cmd.pm',
	INSTALLDIRS  => 'site',
#	SIGN         => 1, # temporary for now
	PL_FILES     => { },
	PREREQ_PM    => {
		'Test::use::ok'             => 0,
        'App::Cmd'                  => 0,
        'Moose'                     => 0,
        'MooseX::Getopt'            => "0.09",
        'Getopt::Long::Descriptive' => 0,
	},
);