domain support for feeds, factor out sc-specific bits
[scpubgit/SCS.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use 5.008001;
4 use ExtUtils::MakeMaker;
5
6 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
7
8 WriteMakefile(
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 );