You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-api-tools/Build.PL

17 lines
526 B

use Module::Build qw();
my $builder = Module::Build->new(
module_name => 'NGCP-API-Client',
license => 'gpl',
dist_author => 'Kirill Solomko <ksolomko@sipwise.com>',
dist_version_from => 'lib/NGCP/API/Client.pm',
requires => {
'Config::Tiny' => 0,
'IO::Socket::SSL' => 0,
'JSON' => 0,
'LWP::UserAgent' => 0,
'NGCP::Panel' => 0.01,
'Readonly' => 0,
},
);
$builder->create_build_script;