Metadata-Version: 2.4
Name: miru-core
Version: 16.5.8.dev1
Summary: Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers
Home-page: https://miru.re
Author: Miru Developers
Author-email: oleavr@miru.re
License: wxWindows Library Licence, Version 3.1
Keywords: miru debugger dynamic instrumentation inject javascript windows macos linux ios iphone ipad android qnx
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: MacOS X
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: JavaScript
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: COPYING
Requires-Dist: typing_extensions; python_version < "3.11"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# miru-core

Python bindings for [Miru](https://miru.re). (`import miru`)

## Install (pip)

    pip install miru-core

## Some tips during development

To build and test your own wheel, do something along the following lines:

```
set MIRU_VERSION=16.0.1-dev.7 # from C:\src\miru\build\tmp-windows\miru-version.h
set MIRU_EXTENSION=C:\src\miru\build\miru-windows\x64-Release\lib\python3.10\site-packages\_miru.pyd
cd C:\src\miru\miru-core\
pip wheel .
pip uninstall miru-core
pip install miru_core-16.0.1.dev7-cp39-abi3-win_amd64.whl
python -c "import miru; print(miru.__version__)"
```
