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

WriteMakefile(
    NAME              => 'Authen::HOTP',
    VERSION_FROM      => 'lib/Authen/HOTP.pm',
    PREREQ_PM         => {
	'Digest::SHA1' => 1,
	'Digest::HMAC' => 1,
	'Math::BigInt' => 1,
    },
    ($] >= 5.005 ?
      (ABSTRACT_FROM  => 'lib/Authen/HOTP.pm',
       AUTHOR         => 'Iain Wade <iwade@optusnet.com.au>') : ()),
);