use strict; use warnings; use ExtUtils::MakeMaker; WriteMakefile( NAME => 'ballet', AUTHOR => q{YOUR NAME }, VERSION_FROM => 'lib/ballet.pm', ABSTRACT => 'YOUR APPLICATION ABSTRACT', ($ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE'=> 'perl') : ()), PL_FILES => {}, PREREQ_PM => { 'Test::More' => 0, 'YAML' => 0, 'Dancer' => 1.3011, 'Git::Repository' => 0, 'Dancer::Plugin::WebSocket' => 0, 'Mouse' => 0, 'Dancer::Plugin::FlashMessage' => 0, 'Dancer::Plugin::Auth::Twitter' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'ballet-*' }, );