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.
19 lines
557 B
19 lines
557 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::XS' => 0,
|
|
'LWP::UserAgent' => 0,
|
|
'Readonly' => 0,
|
|
},
|
|
recommends => {
|
|
'NGCP::Panel' => 0,
|
|
},
|
|
);
|
|
$builder->create_build_script;
|