removing unused sub
[padre-plugin-nopaste.git] / Build.PL
blobd42ccbea948fb7a3bf5b08a24e5c3b48b79f1d0b
2 # This file is part of Padre::Plugin::Nopaste.
3 # Copyright (c) 2009 Jerome Quelin, all rights reserved.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the same terms as Perl itself.
10 use strict;
11 use warnings;
13 use Module::Build;
15 my $builder = Module::Build->new(
16     module_name         => 'Padre::Plugin::Nopaste',
17     license             => 'perl',
18     dist_author         => 'Jerome Quelin <jquelin@gmail.com>',
19     dist_version_from   => 'lib/Padre/Plugin/Nopaste.pm',
20     build_requires => {
21         'App::Nopaste' => 0,
22         'Test::More'   => 0,
23         'Padre'        => '0.28',
24     },
25     add_to_cleanup      => [ 'Padre-Plugin-Nopaste-*', map { ( '*/' x $_ ) . '*~' } 0..5 ],
26     create_makefile_pl  => 'traditional',
29 $builder->create_build_script();