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

WriteMakefile(
    NAME                => 'Chemistry::File::InternalCoords',
    AUTHOR              => 'David Westbrook <dwestbrook@gmail.com>',
    VERSION_FROM        => 'lib/Chemistry/File/InternalCoords.pm',
    ABSTRACT_FROM       => 'lib/Chemistry/File/InternalCoords.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More'				=> 0.44,
	'Chemistry::Mol'			=> 0.36,
	'Chemistry::File'			=> 0.36,
	'Chemistry::InternalCoords'		=> 0.18,
	'Chemistry::InternalCoords::Builder'	=> 0.18,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Chemistry-File-InternalCoords-*' },
);