The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME         => 'PPIx::IndexOffsets',
    VERSION_FROM => 'lib/PPIx/IndexOffsets.pm',
    LICENSE      => 'perl',
    AUTHOR       => 'Leon Brocard <acme@astray.com>',
    PREREQ_PM    => {
        'Test::More' => '0',
        'PPI'        => '0',
    },
);