The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  DISTNAME  => 'Dist-Zilla-Plugin-CopyTo',
  NAME      => 'Dist::Zilla::Plugin::CopyTo',
  AUTHOR    => "woosley\.xu",
  ABSTRACT  => "Copy\ to\ Other\ Places\ Plugin\ for\ Dist\:\:Zilla",
  VERSION   => '0.11',
  EXE_FILES => [ qw() ],
  (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
  PREREQ_PM    => {
    "Dist::Zilla" => '0',
  },
  test => {TESTS => 't/*.t'}
);