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          => 'Parse::PlainConfig',
  AUTHOR        => 'Arthur Corliss <corliss@digitalmages.com>',
  ABSTRACT      => 'Parser/Generator of human-readable conf files',
  VERSION_FROM  => 'lib/Parse/PlainConfig.pm',
  PREREQ_PM     => {
    Paranoid          => undef,
    Text::ParseWords  => undef,
    Text::Tabs        => undef,
    },
);

exit 0;