Metadata-Version: 2.3
Name: pluralizefr
Version: 0.0.1
Summary: pluralize for french language
Project-URL: Homepage, https://github.com/sblondon/pluralizefr
Author-email: Yaal Coop <contact@yaal.coop>
License-File: LICENSE
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/x-rst

================
French Pluralize
================

Convert a singular word into plural according french grammar rules.
Plural to singular is available too (but some special cases are probably missing).


Usable as Jinja2 filter.

Licence
-------

BSD license (see LICENCE file)


Features
--------

1. Python code example:

.. code-block:: python

    import pluralizefr
    pluralizefr.pluralize("fromage") # return fromages
    pluralizefr.singularize("fromages") # return fromage


2. Jinja2 exemple:

.. code-block:: jinja2

    {{ 'fromage' | pluralize }}

