Eliza-Chatbot

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

use strict;
use warnings;
use ExtUtils::MakeMaker;
use Module::Metadata;

WriteMakefile(
    NAME             => 'Eliza::Chatbot',
    AUTHOR           => q{Robert Acock <email@lnation.org>},
    VERSION_FROM     => 'lib/Eliza/Chatbot.pm',
    ABSTRACT_FROM    => 'lib/Eliza/Chatbot.pm',
    LICENSE          => 'artistic_2',
    PL_FILES         => {},
    MIN_PERL_VERSION => 5.006,
    macro => { TARFLAGS   => "--format=ustar -c -v -f" },
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
        'Array::Utils' => 0.5,
        'Ref::Util' => 0.0020,
    },
    PREREQ_PM => {
        'Moo'              => 1.0010001,
        'MooX::LazierAttributes' => 0.07,
        'Ref::Util' => 0.0020,
        'strict' => 0,
        'warnings' => 0,
        'Const::XS' => '1.00'
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Eliza-Chatbot-*' },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url  => 'https://github.com/ThisUsedToBeAnEmail/Eliza-Chatbot.git',
                web  => 'https://github.com/ThisUsedToBeAnEmail/Eliza-Chatbot',
            },
        },
    },
    META_ADD => {
        provides => Module::Metadata->provides(version => '2', dir => 'lib'),
	}, 
);



( run in 2.603 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )