The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use 5.010;
use strict;
use warnings;

our $VERSION = '0.01'; # VERSION

use Perinci::CmdLine;
Perinci::CmdLine->new(
    url => '/Software/Release/Watch/list_software',
)->run;

1;
# ABSTRACT: List watchable software
# PODNAME: list-watchable-software


__END__
=pod

=head1 NAME

list-watchable-software - List watchable software

=head1 VERSION

version 0.01

=head1 DESCRIPTION

This is a command-line interface for L<Software::Release::Watch>'s
C<list_software()> function.

=head1 FAQ

=head1 SEE ALSO

L<Software::Release::Watch>

L<Software::Catalog>

=head1 AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Steven Haryanto.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut