Makefile.PL 996 B

123456789101112131415161718192021222324252627282930313233
  1. use 5.010; #Perl 5.10 minimum due to usage of undef or (//)
  2. use ExtUtils::MakeMaker;
  3. WriteMakefile(
  4. NAME => "TestRail::API",
  5. VERSION_FROM => "lib/TestRail/API.pm",
  6. MIN_PERL_VERSION => '5.010',
  7. TEST_REQUIRES => {
  8. "Test::More" => 0,
  9. "Scalar::Util" => 0,
  10. "Prompt::Timeout" => 0
  11. },
  12. PREREQ_PM => {
  13. "Carp" => 0,
  14. "Scalar::Util" => 0,
  15. "Data::Validate::URI" => 0,
  16. "Clone" => 0,
  17. "Try::Tiny" => 0,
  18. "JSON::XS" => 0,
  19. "HTTP::Request" => 0,
  20. "LWP::UserAgent" => 0
  21. },
  22. META_MERGE => {
  23. 'meta-spec' => { version => 2 },
  24. resources => {
  25. repository => {
  26. type => 'git',
  27. url => 'https://github.com/teodesian/TestRail-Perl.git',
  28. web => 'https://github.com/teodesian/TestRail-Perl',
  29. },
  30. },
  31. }
  32. );