gitextract_rrqsq90u/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile.venv ├── README.md ├── docs/ │ ├── README.md │ ├── howto-custom-venv-recipe.md │ ├── howto-pip-compile.md │ ├── howto-pipenv.md │ └── howto-poetry.md ├── pypi/ │ ├── Makefile │ ├── README.md │ ├── pyproject.toml │ ├── setup.cfg │ ├── src/ │ │ └── Makefile_venv/ │ │ └── __init__.py │ ├── tests/ │ │ └── test_installable.py │ └── tox.ini └── tests/ ├── Makefile ├── README.md ├── __init__.py ├── common.py ├── data/ │ ├── dependencies.mk │ ├── hello.py │ ├── pip-compile.mk │ ├── pyproject.toml │ ├── recipe-override.mk │ ├── requirements-extra.txt │ ├── requirements.in │ ├── requirements.txt │ └── setup.py ├── test_dependencies.py ├── test_makefile.py ├── test_pip_compile.py ├── test_py_autodetect.py ├── test_pyproject_toml.py ├── test_recipe_override.py ├── test_release_checksum.py ├── test_release_version.py ├── test_requirements_txt.py ├── test_setup_py.py └── test_spaces.py