├── .github ├── FUNDING.yml └── workflows │ ├── codeql-analysis.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG ├── LICENSE ├── README.rst ├── pw ├── pw.bat ├── pw.lock ├── pyproject.toml ├── src └── pybreaker │ ├── __init__.py │ └── py.typed └── tests ├── __init__.py ├── pybreaker_test.py └── typechecks.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/README.rst -------------------------------------------------------------------------------- /pw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/pw -------------------------------------------------------------------------------- /pw.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python "%~dp0pw" %* 3 | -------------------------------------------------------------------------------- /pw.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/pw.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pybreaker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/src/pybreaker/__init__.py -------------------------------------------------------------------------------- /src/pybreaker/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pybreaker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/tests/pybreaker_test.py -------------------------------------------------------------------------------- /tests/typechecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielfm/pybreaker/HEAD/tests/typechecks.py --------------------------------------------------------------------------------