summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 5aa2d492c3af49d0a6147f67ac73e8959c8b8a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use inc::Module::Install;
 
name     'Thread-Queue-Event';
license  'perl';
all_from 'lib/Thread/Queue/Event.pm';
 
requires 'Thread::Queue'     => 0,
         'Moose'             => 0,
         'Class::MOP'        => 0,
         'perl'              => '5.8.0',
;
 
test_requires 'Test::Most'   => 0,
              'Glib'         => 0,
;
 
WriteAll;