load extensions statically to avoid bad object wrapping interactions
[scpubgit/stemmatology.git] / base / Makefile.PL
CommitLineData
dd3b58b0 1#!/usr/bin/env perl
2
dd3b58b0 3use inc::Module::Install;
4author( 'Tara L Andrews <aurum@cpan.org>' );
5license( 'perl' );
331c2dbf 6perl_version( '5.012' );
7all_from( 'lib/Text/Tradition.pm' );
cb83a59e 8requires( 'Algorithm::Diff' );
0cf7462b 9requires( 'Class::Load' );
98a6cab2 10requires( 'DBI' );
0f5d05c6 11requires( 'File::Which' );
cb83a59e 12requires( 'Graph' );
cb83a59e 13requires( 'IPC::Run' );
a731e73a 14requires( 'JSON' );
cff504fc 15requires( 'KiokuDB::Backend::DBI' );
ad1291ee 16requires( 'KiokuDB::GC::Naive' );
8d9a1cd8 17requires( 'KiokuDB::TypeMap' );
18requires( 'KiokuDB::TypeMap::Entry::Naive' );
19requires( 'KiokuX::Model' );
428bcf0b 20requires( 'KiokuX::User::Util' );
cb83a59e 21requires( 'Module::Load' );
22requires( 'Moose' );
951ddfe8 23requires( 'Moose::Util' );
cb83a59e 24requires( 'Moose::Util::TypeConstraints' );
951ddfe8 25requires( 'Safe::Isa' );
3a3b8213 26requires( 'Spreadsheet::ParseExcel' );
27requires( 'Spreadsheet::XLSX' );
63778331 28requires( 'StackTrace::Auto' );
82fa4d57 29requires( 'Text::CSV' );
dee290df 30requires( 'Text::TEI::Markup' => '1.7' );
861c3e27 31requires( 'Throwable::X' );
32requires( 'TryCatch' );
82fa4d57 33requires( 'XML::Easy::Syntax' );
cb83a59e 34requires( 'XML::LibXML' );
35requires( 'XML::LibXML::XPathContext' );
7cd9f181 36requires( 'YAML::XS' );
fc7b6388 37requires( 'namespace::clean' );
fc7b6388 38build_requires( 'Data::Dump' );
cff504fc 39build_requires( 'Test::Warn' );
0cf7462b 40build_requires( 'Test::Memory::Cycle' );
dd3b58b0 41&WriteAll;