The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Module::Build;
my $b= Module::Build->new(
        module_name        => 'Pg::Loader',
        dist_version_from  => 'lib/Pg/Loader.pm',
        dist_author        => 'Ioannis Tambouras<ioannis@cpan.org>',
        requires           => {  
				perl                     => '5.010',
                #'FindBin'                => '1.47',
                #'Text::Autoformat'       => '0',
                #'Carp::Assert'           => '0.18',
                #'File::Slurp'            => '9999.12',
                #'SQL::Abstract'      =    > '1.24',
                'Text::Table'             => '1.107',
                'Log::Log4perl'           => '1.16',
                'Storable'                => '2.18',
                'Config::Format::Ini'     => '0.05',
                'DBD::Pg'                 => '2.10.7',
                'Time::HiRes'             => '1.9711',
                'List::MoreUtils'         => '0.22',
                'Text::CSV'               => '1.06',
                'Getopt::Compact'         => '0.04',
                'Quantum::Superpositions' => '2.02',
                },
        recommends => { 
				'Test::HasVersion'      =>  '0.012',
				'Test::Dependencies'    =>  '0.11',
				'Test::CPAN::Meta'      =>  '0.12',
				'Test::Pod'             =>  '1.0',
				'Test::Pod::Coverage'   => '1.0',
				'Test::MockDBI'         => '0.61',
				'Test::Exception'       => '0.27',
                'Test::MinimumVersion'  =>  '0.101080',
                'Test::Spelling'        =>  '0.15',
                 },
        script_files       =>  [ 'script/pgloader.pl' ],
        license            => 'perl',
        #create_readme     => 1,
);

$b->create_build_script;