1use strict;
2use warnings;
3use Module::Build;
4
5my $builder = Module::Build->new(
6    module_name         => 'Lvalue',
7    license             => 'perl',
8    dist_author         => q{Eric Strom <asg@cpan.org>},
9    dist_version_from   => 'lib/Lvalue.pm',
10    build_requires => {
11        'Test::More' => 0,
12    },
13	requires => {
14		'strict'	   => 0,
15		'warnings'     => 0,
16		'Carp'		   => 0,
17		'overload'     => 0,
18		'Scalar::Util' => 0,
19    },
20    add_to_cleanup      => [ 'Lvalue-*' ],
21    create_makefile_pl => 'traditional',
22);
23
24$builder->create_build_script();
25