summaryrefslogtreecommitdiff
path: root/Build.PL
blob: bfa301f0d1b55ef9451249f315b708b6cc2c5f4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use Module::Build;

Module::Build->new(
  dist_name     => 'Tanja',
  dist_version  => '0.1',
  dist_author   => 'Yoran Heling <yorhel@cpan.org>',
  dist_abstract => 'An interface to the Tanja communication system',
  license       => 'mit',
  pm_files => {
    'Tanja.pm' => 'lib/Tanja.pm',
  },
  requires => {
    perl     => '5.10.0',
    AnyEvent => 0,
  },
)->create_build_script;