gitextract_jpl9oo1o/ ├── .coveragerc ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── NEWS.rst ├── README.rst ├── SECURITY.md ├── docs/ │ ├── conf.py │ ├── history.rst │ └── index.rst ├── inflect/ │ ├── __init__.py │ ├── compat/ │ │ ├── __init__.py │ │ └── py38.py │ └── py.typed ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── ruff.toml ├── tea.yaml ├── tests/ │ ├── inflections.txt │ ├── test_an.py │ ├── test_classical_all.py │ ├── test_classical_ancient.py │ ├── test_classical_herd.py │ ├── test_classical_names.py │ ├── test_classical_person.py │ ├── test_classical_zero.py │ ├── test_compounds.py │ ├── test_inflections.py │ ├── test_join.py │ ├── test_numwords.py │ ├── test_pl_si.py │ ├── test_pwd.py │ └── test_unicode.py ├── towncrier.toml └── tox.ini