gitextract_cnlewpi2/ ├── .coveragerc ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── publish.yml │ └── test.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── NAFAS.spec ├── PROGRAMS.md ├── README.md ├── SECURITY.md ├── autopep8.bat ├── autopep8.sh ├── build_exe.bat ├── codecov.yml ├── dev-requirements.txt ├── nafas/ │ ├── __init__.py │ ├── __main__.py │ ├── functions.py │ └── params.py ├── otherfiles/ │ ├── RELEASE.md │ ├── Version.rc │ ├── requirements-splitter.py │ └── version_check.py ├── pytest.ini ├── requirements.txt ├── setup.py └── test/ ├── test.py ├── test_config1.json ├── test_config2.json └── test_config3.json