gitextract_h21hfea8/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── README.rst ├── news/ │ └── .gitignore ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src/ │ └── shellingham/ │ ├── __init__.py │ ├── _core.py │ ├── nt.py │ └── posix/ │ ├── __init__.py │ ├── _core.py │ ├── proc.py │ └── ps.py ├── tasks/ │ ├── CHANGELOG.rst.jinja2 │ └── __init__.py ├── tests/ │ └── test_posix.py └── tox.ini