initial version with mediawiki produce/parse, three reports, missing update-merger
[scpubgit/System-Introspector-Report.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 WriteMakefile(
8   NAME => 'System-Introspector-Report',
9   VERSION_FROM => 'lib/System/Introspector/Report.pm',
10   PREREQ_PM => {
11     'Moo'               => '1.000000',
12     'HTML::Zoom'        => '0.009006',
13     'Config::General'   => '2.51',
14     'Module::Runtime'   => '0.013',
15     'IO::All'           => '0.45',
16     'strictures'        => '1',
17     'JSON::PP'          => '2.53',
18     'Object::Remote'    => '0.001001',
19     'MRO::Compat'       => 0,
20     'Class::C3'         => 0,
21     'Getopt::Long'      => 0,
22     'Pod::Usage'        => 0,
23     'aliased'           => 0,
24   },
25   EXE_FILES => [
26     'bin/system-introspector-report',
27   ],
28 );