gitextract_nws95u0a/ ├── .coveragerc ├── .github/ │ └── workflows/ │ ├── pre-commit_hooks.yaml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .version ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── benchmark/ │ └── test_benchmark.py ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── setup.cfg └── src/ ├── flupy/ │ ├── __init__.py │ ├── cli/ │ │ ├── __init__.py │ │ ├── cli.py │ │ └── utils.py │ ├── fluent.py │ └── py.typed └── tests/ ├── test_cli.py ├── test_cli_utils.py ├── test_flu.py └── test_version.py