├── .github ├── renovate.json └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── docs ├── api.md ├── cli.md ├── index.md ├── install.md └── performance.md ├── mkdocs.yml ├── mypy.ini ├── prettier.config.mjs ├── pyproject.toml ├── pytest.toml ├── python └── pyromark │ ├── __init__.py │ ├── __main__.py │ ├── _cli.py │ ├── _options.py │ ├── _pyromark.pyi │ ├── event.py │ └── py.typed ├── ruff.toml ├── rustfmt.toml ├── src ├── class_api.rs ├── common.rs ├── function_api.rs └── lib.rs ├── tests ├── __init__.py └── test_pyromark.py └── uv.lock /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- 1 | # API Reference 2 | 3 | ::: pyromark 4 | -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/docs/performance.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/mypy.ini -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.toml: -------------------------------------------------------------------------------- 1 | [pytest] 2 | strict = true 3 | -------------------------------------------------------------------------------- /python/pyromark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/python/pyromark/__init__.py -------------------------------------------------------------------------------- /python/pyromark/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/python/pyromark/__main__.py -------------------------------------------------------------------------------- /python/pyromark/_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/python/pyromark/_cli.py -------------------------------------------------------------------------------- /python/pyromark/_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/python/pyromark/_options.py -------------------------------------------------------------------------------- /python/pyromark/_pyromark.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/python/pyromark/_pyromark.pyi -------------------------------------------------------------------------------- /python/pyromark/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/python/pyromark/event.py -------------------------------------------------------------------------------- /python/pyromark/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/ruff.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/class_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/src/class_api.rs -------------------------------------------------------------------------------- /src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/src/common.rs -------------------------------------------------------------------------------- /src/function_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/src/function_api.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_pyromark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/tests/test_pyromark.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monosans/pyromark/HEAD/uv.lock --------------------------------------------------------------------------------