use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
              NAME                => 'Test::XML::Generator',
              AUTHOR              => q{Alberto Simoes <ambs@cpan.org>},
              VERSION_FROM        => 'lib/Test/XML/Generator.pm',
              ABSTRACT_FROM       => 'lib/Test/XML/Generator.pm',
              ($ExtUtils::MakeMaker::VERSION >= 6.3002
               ? ('LICENSE'=> 'perl')
               : ()),
              PL_FILES            => {},
              PREREQ_PM => {
                            'Text::Lorem'    => 0.3,
                            'Test::More'     => 0,
                            'XML::DTDParser' => 2.01,
                           },
              dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
              clean               => { FILES => 'Test-XML-Generator-*' },
             );

