write a proper schema.sql
[ppolls.git] / Makefile.PL
blob23823e75346432a45d3dfe465564183dd853c1c5
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
5 WriteMakefile(
6     NAME                => 'Ppolls',
7     AUTHOR              => q{Gryllida <Gryllida@fastmail.fm>},
8     VERSION_FROM        => 'lib/Pppolls.pm',
9     ABSTRACT            => 'A website for polls and adding new questions',
10     ($ExtUtils::MakeMaker::VERSION >= 6.3002
11       ? ('LICENSE'=> 'perl')
12       : ()),
13     PL_FILES            => {},
14     PREREQ_PM => {
15         'Test::More' => 0,
16         'YAML'       => 0,
17         'Dancer'     => 1.2003,
18     },
19     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
20     clean               => { FILES => 'Ppolls-*' },