From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

Module::Features::PythonTrove - Put Python trove classifiers in your module

VERSION

This document describes version 0.003 of Module::Features::PythonTrove (from Perl distribution Module-Features-PythonTrove), released on 2021-04-02.

SYNOPSIS

To add Python trove classifiers in your module, just define %FEATURES variable:

package YourModule;
#ABSTRACT: Highlight Indonesian words from text
our %FEATURES = (
features => {
PythonTrove => {
"Development Status" => "3 - Alpha",
"Intended Audience" => "Developers",
"License" => [
"OSI Approved :: Artistic License",
"OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
],
"Natural Language" => "Indonesian",
"Programming Language" => "Perl",
"Environment" => "Console",
"Topic" => [
"Software Development :: Libraries :: Perl Modules",
"Text Processing :: Linguistic",
"Utilities",
],
},
# other features you might want to define
# ...
},
};

To check whether your classifiers are valid (does not contain unknown classifiers), you can use check-module-features from App::ModuleFeaturesUtils:

% check-module-features YourModule

To see the Python trove classifiers, you can use get-features-decl from App::ModuleFeaturesUtils:

% get-features-decl YourModule

There are other ways to read the trove classifiers, including accessing the %FEATURES variable directly.

DESCRIPTION

DEFINED FEATURES

Features defined by this module:

  • Development Status

    Optional. Type: any.

  • Environment

    Optional. Type: any.

  • Framework

    Optional. Type: any.

  • Intended Audience

    Optional. Type: any.

  • License

    Optional. Type: any.

  • Natural Language

    Optional. Type: any.

  • Operating System

    Optional. Type: any.

  • Programming Language

    Optional. Type: any.

  • Topic

    Optional. Type: any.

  • Typing

    Optional. Type: any.

For more details on module features, see Module::Features.

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/Module-Features-PythonTrove.

SOURCE

Source repository is at https://github.com/perlancar/perl-Module-Features-PythonTrove.

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/perlancar/perl-Module-Features-PythonTrove/issues

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

SEE ALSO

Module::Features::PerlTrove

Module::Features

https://pypi.org/classifiers/

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2021 by perlancar@cpan.org.

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