├── .codespellrc ├── .github └── workflows │ └── code-checks.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .python-version ├── ChangeLog.md ├── LICENSE ├── Makefile ├── README.md ├── img ├── pispy-description.png ├── pispy-wheel.png └── pispy.png ├── pyproject.toml ├── requirements-dev.lock ├── requirements.lock └── src └── pispy ├── __init__.py ├── __main__.py ├── app.py ├── data ├── __init__.py └── package.py ├── py.typed └── widgets ├── __init__.py └── package_information.py /.codespellrc: -------------------------------------------------------------------------------- 1 | [codespell] 2 | ignore-words-list=wee 3 | -------------------------------------------------------------------------------- /.github/workflows/code-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/.github/workflows/code-checks.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | [FORMAT] 2 | max-line-length=120 3 | 4 | [MESSAGES CONTROL] 5 | disable=fixme 6 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12.4 2 | -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/README.md -------------------------------------------------------------------------------- /img/pispy-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/img/pispy-description.png -------------------------------------------------------------------------------- /img/pispy-wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/img/pispy-wheel.png -------------------------------------------------------------------------------- /img/pispy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/img/pispy.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/requirements-dev.lock -------------------------------------------------------------------------------- /requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/requirements.lock -------------------------------------------------------------------------------- /src/pispy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/src/pispy/__init__.py -------------------------------------------------------------------------------- /src/pispy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/src/pispy/__main__.py -------------------------------------------------------------------------------- /src/pispy/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/src/pispy/app.py -------------------------------------------------------------------------------- /src/pispy/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/src/pispy/data/__init__.py -------------------------------------------------------------------------------- /src/pispy/data/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/src/pispy/data/package.py -------------------------------------------------------------------------------- /src/pispy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pispy/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/src/pispy/widgets/__init__.py -------------------------------------------------------------------------------- /src/pispy/widgets/package_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davep/pispy/HEAD/src/pispy/widgets/package_information.py --------------------------------------------------------------------------------