The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
sub readme_from { warn "Module::Install::ReadmeFromPod is not installed?" }
sub auto_set_repository { warn "Module::Install::Repository is not installed?" }

use inc::Module::Install;

name 'DBIx-Skinny-Pager';
all_from 'lib/DBIx/Skinny/Pager.pm';
readme_from 'lib/DBIx/Skinny/Pager.pm';

# requires '';

tests 't/*.t t/**/*.t';
author_tests 'xt';

requires 'DBIx::Skinny', 0.0712;
requires 'Data::Page';
requires 'Carp';

build_requires 'Test::LoadAllModules';
build_requires 'Test::Deep';
build_requires 'Test::Differences';
build_requires 'Module::Install::ReadmeFromPod';
build_requires 'Module::Install::Repository';
use_test_base;

auto_include;
auto_set_repository;
WriteAll;