The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use ExtUtils::MakeMaker;

WriteMakefile(
              NAME          => 'Any::Renderer',
              VERSION_FROM  => 'lib/Any/Renderer.pm',
              PREREQ_PM => {
                              'Test::Assertions' => 0,
                              'Log::Trace' => 0,
                              'File::Find' => 0,
                              'File::Spec' => 0,
                           },
              ABSTRACT_FROM => 'lib/Any/Renderer.pm',
              AUTHOR        => 'Kevin McGrath',
              META_MERGE => {
                  resources => {
                      repository => 'https://github.com/kmcgrath/Any-Renderer',
                  },
              },
);