use 5.008009;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'CryptoTron',
    PREREQ_PM         => {'Try::Catch' => '1.1.0', 'Bitcoin::Crypto::Base58' => '1.007'}, # e.g., Module::Name => 1.1
    ABSTRACT          => 'Perl extension for use with the blockchain of the crypto coin Tron.', # retrieve abstract from module
    AUTHOR            => 'Dr. Peter Netz <ztenretep@cpan.org>',
    VERSION           => '0.03', # finds $VERSION, requires EU::MM from perl >= 5.5
    #VERSION_FROM      => 'lib/CryptoTron/SignTransaction.pm', # finds $VERSION, requires EU::MM from perl >= 5.5
    #ABSTRACT_FROM     => 'lib/CryptoTron/SignTransaction.pm', # retrieve abstract from module
    LICENSE           => 'mit',
    #Value must be from legacy list of licenses here
    #http://search.cpan.org/perldoc?Module%3A%3ABuild%3A%3AAPI
);