package Module::Name; use strict; BEGIN { use Exporter (); use vars qw ($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); $VERSION = 0.01; @ISA = qw (Exporter); @EXPORT = qw (); @EXPORT_OK = qw (bunch_of_methods_and_constant_vars); %EXPORT_TAGS = ( constants => [qw(constant_vars)], ); }