The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use 5.022;
use ExtUtils::MakeMaker;

WriteMakefile(
  NAME              => 'Graph::Feather',
  VERSION_FROM      => 'lib/Graph/Feather.pm', # finds $VERSION
  PREREQ_PM         => {
    'DBD::SQLite' => '1.5',
    'DBI' => 0,
  },
  TEST_REQUIRES     => {
    'Test::More' => 0,
    'List::UtilsBy' => 0,
    'Graph::Directed' => 0,
  },
  ($] >= 5.005 ?     
    (ABSTRACT_FROM  => 'lib/Graph/Feather.pm', # retrieve abstract from module
     AUTHOR         => 'Bjoern Hoehrmann <bjoern@hoehrmann.de>') : ()),

  LICENSE           => 'perl',
  'dist'            => {
    PREOP     => 'chmod 600 Makefile.PL',
    TARFLAGS	=> '--group=none --owner=bjoern --mode=a+rw -cvf',
  },
  META_MERGE        => {
    'meta-spec' => { version => 2 },
    resources => {
       repository => {
         type => 'git',
         url  => 'https://github.com/hoehrmann/Graph-Feather.git',
         web  => 'https://github.com/hoehrmann/Graph-Feather',
      },
    },
  },
);