Makefile.PL 798 B

1234567891011121314151617181920212223242526272829
  1. use ExtUtils::MakeMaker;
  2. WriteMakefile(
  3. NAME => 'Test::Mapper',
  4. AUTHOR => 'Troglodyne Internet Widgets',
  5. VERSION_FROM => 'lib/Test/Mapper.pm',
  6. ABSTRACT_FROM => 'lib/Test/Mapper.pm',
  7. LICENSE => 'artistic_2',
  8. MIN_PERL_VERSION => '5.010',
  9. PREREQ_PM => {
  10. 'DBI' => 0,
  11. 'DBD::SQLite' => 0,
  12. 'File::Touch' => 0,
  13. 'File::Slurper' => 0,
  14. },
  15. TEST_REQUIRES => {
  16. 'Test::More' => 0,
  17. 'File::Temp' => 0,
  18. },
  19. META_MERGE => {
  20. 'meta-spec' => { version => 2 },
  21. resources => {
  22. repository => {
  23. type => 'git',
  24. url => 'https://git.troglodyne.net/Troglodyne/Test-Mapper.git',
  25. },
  26. },
  27. },
  28. );