gitextract_m3lmgpzh/ ├── .github/ │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CHANGELOG.rst ├── CHECKLIST.md ├── CONTRIBUTING.md ├── CREDITS.md ├── LICENSE.md ├── README.md ├── awesome/ │ ├── __init__.py │ ├── awesome.py │ ├── awesome_cli.py │ └── lib/ │ ├── __init__.py │ └── github.py ├── codecov.yml ├── requirements-dev.txt ├── scripts/ │ ├── create_changelog.sh │ ├── create_readme_rst.sh │ ├── run_code_checks.sh │ ├── set_changelog_as_readme.sh │ ├── set_changelog_as_readme_undo.sh │ ├── update_docs.sh │ └── upload_pypi.sh ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── data/ │ │ ├── README.md │ │ ├── README_RESULT.md │ │ ├── __init__.py │ │ └── readme_expected.py │ ├── mock_github.py │ ├── run_tests.py │ ├── test_awesome.py │ ├── test_awesome_cli.py │ └── test_cli.py └── tox.ini