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         => 'HTTP::Proxy',
    VERSION_FROM => 'lib/HTTP/Proxy.pm',
    PREREQ_PM    => {
        'Test::More'     => 0,
        'HTTP::Daemon'   => 1.25,
        'LWP::UserAgent' => 2,
    },
    PL_FILES => {},
    ABSTRACT_FROM => 'lib/HTTP/Proxy.pm',
    AUTHOR        => 'Philippe "BooK" Bruhat <book@cpan.org>',
    META_MERGE => {
        resources => {
            repository => 'http://github.com/book/HTTP-Proxy',
        },
    },
);