Strip code down to the bare minimum to start from
[catagits/CatalystX-DynamicComponent.git] / Makefile.PL
1 # IMPORTANT: if you delete this file your app will not work as
2 # expected.  you have been warned
3 use inc::Module::Install;
4
5 name 'DynamicAppDemo';
6 all_from 'lib/DynamicAppDemo.pm';
7
8 requires 'Catalyst::Runtime' => '5.80002';
9 requires 'Catalyst::Plugin::ConfigLoader';
10 requires 'YAML';
11
12 catalyst;
13
14 install_script glob('script/*.pl');
15 auto_install;
16 WriteAll;