gitextract_01rcl0_x/ ├── .github/ │ └── workflows/ │ ├── onpush.yml │ └── onrelease.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── cookiecutter.json ├── hooks/ │ └── post_gen_project.py ├── pytest.ini ├── requirements.txt ├── tests/ │ ├── __init__.py │ ├── test_e2e_local.py │ └── utils.py ├── tox.ini ├── utils/ │ └── profile_creator.py └── {{cookiecutter.project_name}}/ ├── .coveragerc ├── .github/ │ └── workflows/ │ ├── onpush.yml │ └── onrelease.yml ├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── azure-pipelines.yml ├── conf/ │ └── test/ │ └── sample.json ├── pytest.ini ├── setup.py ├── tests/ │ ├── integration/ │ │ └── sample_test.py │ └── unit/ │ └── sample_test.py ├── unit-requirements.txt └── {{cookiecutter.project_slug}}/ ├── __init__.py ├── common.py └── jobs/ ├── __init__.py └── sample/ ├── __init__.py └── entrypoint.py