Metadata-Version: 2.4
Name: wasamole
Version: 0.5.0
Summary: A tasty framework for WebAssembly Software Analysis
Home-page: https://github.com/CarveSystems/wasamole
Author: Carve Systems, LLC.
Author-email: meadori@carvesystems.com
License: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Assemblers
Classifier: Topic :: Software Development :: Disassemblers
Classifier: Topic :: Software Development :: Interpreters
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# Wasamole

_A tasty framework for WebAssembly Software Analysis_

## Description

Wasamole is a framework for analysing [WebAssembly](https://webassembly.github.io/spec/core/) programs. It is meant to provide:

1. A WASM disassembler.
2. A WASM assembler.
3. A WASM VM implementation.
4. A set of core modules to be used to build other WASM-based tools.

## Development

When working on Wasamole please keep the following things in mind.

### Formatting

All code should be formatted with [black](https://github.com/psf/black). There is a `make` target for it:

`make format`

### Type Checking

All code should be type checked with [mypy](http://mypy-lang.org/).  There is a `make` target for it:

`make typecheck`

### Testing

Run unit tests with:

`make test`
