Initial commit
[data-faker-colour.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 use strict;
3 use warnings;
4
5 WriteMakefile(
6 NAME => 'Data::Faker::Colour',
7 VERSION_FROM => 'lib/Data/Faker/Colour.pm',
8 ABSTRACT_FROM => 'lib/Data/Faker/Colour.pm',
9 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/Convert::Color::HSLuv 0
15 Data::Faker 0/,
16 },
17 META_ADD => {
18 dynamic_config => 0,
19 resources => {
20 repository => 'https://git.ieval.ro/?p=data-faker-colour.git',
21 },
22 }
23 );
This page took 0.021671 seconds and 4 git commands to generate.