7291eeeffc98c8616cfd933537ebbe995a272adc
[p5sagit/Class-C3-Componentised.git] / Makefile.PL
1 use inc::Module::Install 0.85;
2
3 name      'Class-C3-Componentised';
4 all_from  'lib/Class/C3/Componentised.pm';
5 author    'Ash Berlin <ash@cpan.org>';
6
7
8 requires  'MRO::Compat';
9 requires  'Class::Inspector';
10 requires  'Carp';
11 requires  'Test::Exception';
12
13 # we don't actually need Class::C3. MRO::Compat loads it on 5.8. On 5.10 it
14 # isn't needed. However, some existing code relies on us loading Class::C3. We
15 # don't want to break it just yet. Therefore we depend directly on Class::C3 as
16 # well.
17
18 ### !!! IMPORTANT !!! ###
19 # tests currently rely on Class::C3 availability, by requiring it directly
20 # will need adjustment if the require is removed
21 requires  'Class::C3' => '0.20';
22
23 build_requires 'FindBin';
24
25 WriteAll;