1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4WriteMakefile(
5    'NAME'		=> 'Text::LevenshteinXS',
6    'VERSION_FROM'	=> 'LevenshteinXS.pm',
7    'PREREQ_PM'         => { Test },
8    ($] >= 5.005 ? () : (
9       ABSTRACT_FROM 	=> 'LevenshteinXS.pm',
10       AUTHOR     	=> 'Dree Mistrut <dree@friul.it> and Josh Goldberg <josh@3io.com>'
11    )),
12);
13