domain support for feeds, factor out sc-specific bits
[scpubgit/SCS.git] / Makefile.PL
CommitLineData
2f796f69 1use strict;
2use warnings FATAL => 'all';
3use 5.008001;
4use ExtUtils::MakeMaker;
5
6(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
7
8WriteMakefile(
9 NAME => 'SCS',
10 VERSION_FROM => 'lib/SCSite.pm',
11 PREREQ_PM => {
12 'Web::Simple' => '0.009',
13 'Moo' => '0.009005',
14 'Syntax::Keyword::Gather' => '1.001',
15 'IO::All' => '0.44',
16 'JSON' => '2.50',
17 'Text::MultiMarkdown' => '1.000033',
18 'HTML::Zoom' => '0.009006',
19 },
20);