#!perl
use strict;
use warnings;
use utf8;

use App::cpm;
exit App::cpm->new->run(@ARGV);

__END__

=head1 NAME

cpm - an experimental cpan client

=head1 SYNOPSIS

  # install modules
  > cpm install Module1 Module2 ...

  # from cpanfile (with cpanfile.snapshot if any)
  > cpm install

  # just like carton exec
  > cpm exec perl ...

=head1 OPTIONS

  -w, --workers=N
        number of workers, default: 5
  -L, --local-lib-contained=DIR
        install base, default: local/
  -g, --global
        install modules to global @INC instead of local-lib
  -v, --verbose
        verbose mode; you can see what is going on
      --mirror=URL
        base url for the cpan mirror to use, default: http://www.cpan.org
      --cpanmetadb=URL
        cpanmetadb url, default: http://cpanmetadb-provides.herokuapp.com
      --color, --no-color
        turn on/off color output, default: on
  -V, --version
        show version
  -h, --help
        show this help

=cut
