PageRenderTime 45ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/Statistics-Descriptive/Build.PL

https://bitbucket.org/barbasa/perl-statistics-descriptive-smoothing
Perl | 54 lines | 50 code | 4 blank | 0 comment | 0 complexity | a29736842ab8e04cbda437ba556c79f5 MD5 | raw file
  1. use strict;
  2. use warnings;
  3. use lib "./inc";
  4. use Test::Run::Builder;
  5. my $builder = Test::Run::Builder->new(
  6. module_name => 'Statistics::Descriptive',
  7. license => 'perl',
  8. dist_author => 'Shlomi Fish <shlomif@iglu.org.il>',
  9. dist_version_from => 'lib/Statistics/Descriptive.pm',
  10. configure_requires => {
  11. 'Module::Build' => '0.36',
  12. },
  13. build_requires => {
  14. 'Benchmark' => 0,
  15. 'lib' => 0,
  16. 'Test::More' => 0,
  17. },
  18. requires => {
  19. 'Carp' => 0,
  20. 'POSIX' => 0,
  21. 'strict' => 0,
  22. 'vars' => 0,
  23. 'warnings' => 0,
  24. },
  25. add_to_cleanup => [ 'Statistics-Descriptive-*' ],
  26. create_makefile_pl => 'traditional',
  27. PL_files => {},
  28. meta_merge =>
  29. {
  30. resources =>
  31. {
  32. repository => "https://bitbucket.org/shlomif/perl-statistics-descriptive",
  33. homepage => "http://web-cpan.berlios.de/modules/Statistics-Descriptive/",
  34. },
  35. keywords =>
  36. [
  37. qw(
  38. average
  39. distribution
  40. mean
  41. median
  42. statistics
  43. stats
  44. stddev
  45. ),
  46. "standard deviation"
  47. ],
  48. },
  49. );
  50. $builder->create_build_script();