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

WriteMakefile(
  NAME              => 'Data::AutoBimap',
  VERSION_FROM      => 'lib/Data/AutoBimap.pm',
  PREREQ_PM         => {
    'Test::More'         =>  0,
  },
  ABSTRACT_FROM     => 'lib/Data/AutoBimap.pm',
  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/Data-AutoBimap.git',
         web  => 'https://github.com/hoehrmann/Data-AutoBimap',
      },
    },
  },
);