The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use 5.008004;
use ExtUtils::MakeMaker;


WriteMakefile
(
    'NAME'         => 'Locale::SubCountry',
    'VERSION_FROM' => 'lib/Locale/SubCountry.pm',
    'ABSTRACT'     => 'Convert state, province, county etc. names to/from ISO 3166-2 codes, get all states in a country',
    'AUTHOR'       => 'Kim Ryan <kimryan at cpan org>',
    'LICENSE'      => 'perl',
    'PREREQ_PM'    =>
	{
	locale              => 1.00,
	strict              => 1.04,
	utf8                => 1.09,
	warnings            => 1.12,
    JSON                => 1.00
	},
    
    TEST_REQUIRES =>
    {
    Test::More          => 0.94,
    Test::Pod  => 1.04,
    },
    
   'LICENSE'     => 'perl',
    META_MERGE => {
    'meta-spec' => { version => 2 },
     resources => {
         repository => {
             type => 'git',
             url  => 'https://github.com/dwimperl/Task-DWIM.git',
             web  => 'https://github.com/dwimperl/Task-DWIM',
         },
     },
    }        
);