load extensions statically to avoid bad object wrapping interactions
[scpubgit/stemmatology.git] / morphology / Makefile.PL
CommitLineData
a445ce40 1#!/usr/bin/env perl
2
3use inc::Module::Install;
4author( 'Tara L Andrews <aurum@cpan.org>' );
5license( 'perl' );
6perl_version( '5.012' );
7all_from( 'lib/Text/Tradition/Morphology.pm' );
8requires( 'IPC::Run' );
9requires( 'JSON' );
10requires( 'Lingua::Features::Structure' );
11requires( 'Lingua::TagSet::Multext' );
12requires( 'Lingua::TagSet::TreeTagger::French' );
13requires( 'Lingua::TagSet::TreeTagger::English' );
14requires( 'Module::Load' );
15requires( 'Moose' );
16requires( 'Moose::Role' );
17requires( 'Text::Tradition' );
18requires( 'TryCatch' );
19build_requires( 'Safe::Isa' );
20
21# Modules needed for morphology but not trivially CPANnable
22recommends( 'Lingua::TreeTagger' );
23recommends( 'Flemm' );
24&WriteAll;