summary refs log tree commit diff
path: root/Makefile.PL
blob: c631c9c375ad28d3383e516a4614de988346311a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use inc::Module::Install;
name 'MooseX-Privacy';
all_from 'lib/MooseX/Privacy.pm';

requires 'Moose';
requires 'Scalar::Util';

tests 't/*.t';
author_tests 'xt';

author 'Franck Cuny';
license 'perl';
readme_from 'lib/MooseX/Privacy.pm';

build_requires 'Test::More';
use_test_base;
auto_include;
WriteAll;