rjbs / sub-exporter

a sophisticated, customizable code exporter for Perl

This URL has Read+Write access

sub-exporter / Makefile.PL
100644 15 lines (9 sloc) 0.345 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use inc::Module::Install;
 
all_from ('lib/Sub/Exporter.pm');
 
requires('Sub::Install' => 0.92 ); # exporter, needed to actually export
requires('Data::OptList' => 0.100); # used to process options
requires('Params::Util' => 0.14 ); # _CODELIKE
 
extra_tests;
 
repository('http://github.com/rjbs/sub-exporter');
auto_manifest;
 
WriteAll();