gitextract_g_ilhfmq/ ├── .editorconfig ├── .github/ │ └── workflows/ │ ├── flake8.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .tool-versions ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── Makefile ├── README.rst ├── docs/ │ ├── Makefile │ ├── authors.rst │ ├── conf.py │ ├── contributing.rst │ ├── history.rst │ ├── index.rst │ ├── installation.rst │ ├── make.bat │ ├── readme.rst │ └── usage.rst ├── pipreqs/ │ ├── __init__.py │ ├── mapping │ ├── pipreqs.py │ └── stdlib ├── poetry.toml ├── pyproject.toml ├── tests/ │ ├── __init__.py │ ├── _data/ │ │ ├── empty.txt │ │ ├── imports.txt │ │ ├── imports_any_version.txt │ │ ├── imports_no_version.txt │ │ ├── models.py │ │ └── test.py │ ├── _data_clean/ │ │ └── test.py │ ├── _data_duplicated_deps/ │ │ └── db.py │ ├── _data_ignore/ │ │ ├── .ignore_second/ │ │ │ └── ignored.py │ │ ├── .ignored_dir/ │ │ │ └── ignored.py │ │ └── test.py │ ├── _data_notebook/ │ │ ├── magic_commands.ipynb │ │ ├── markdown_test.ipynb │ │ ├── models.py │ │ └── test.ipynb │ ├── _data_pyw/ │ │ ├── py.py │ │ └── pyw.pyw │ ├── _invalid_data/ │ │ └── invalid.py │ ├── _invalid_data_notebook/ │ │ └── invalid.ipynb │ └── test_pipreqs.py └── tox.ini