Initial import of Config::Any (refactored from Catalyst::Plugin::ConfigLoader), and...
[p5sagit/Config-Any.git] / Build.PL
diff --git a/Build.PL b/Build.PL
new file mode 100644 (file)
index 0000000..02a5026
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,18 @@
+use strict;
+use warnings;
+use Module::Build;
+
+my $builder = Module::Build->new(
+    module_name         => 'Config::Any',
+    license             => 'perl',
+    dist_author         => 'Joel Bernstein <rataxis@cpan.org>',
+    dist_version_from   => 'lib/Config/Any.pm',
+    requires => {
+        'Test::More' => 0,
+        'version'    => 0,
+               'Module::Pluggable' => '3.01'
+    },
+    add_to_cleanup      => [ 'Config-Any-*' ],
+);
+
+$builder->create_build_script();