summary refs log tree commit diff
path: root/Makefile.PL
blob: 08ed5a121fbf1c49d9626624ad0923fa782f42d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'ballet',
    AUTHOR              => q{YOUR NAME <youremail@example.com>},
    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-*' },
);