Skip to content

Commit

Permalink
Remove patch dependency from distributed code
Browse files Browse the repository at this point in the history
  • Loading branch information
olivi-r committed Jul 14, 2023
1 parent cecfb1e commit e24b9c2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,11 @@ pip install patch
python patch_headers.py
python -m pip install .
```

# Usage

Simply pass the C or C++ file and any extra arguments straight to the compiler.

```bash
wasmpy-build my_file.c -o my_file.wasm
```
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def recurse_files(directory):

setuptools.setup(
name="wasmpy-build",
version="0.3.1",
version="0.3.2",
author="Olivia Ryan",
author_email="[email protected]",
description="WebAssembly build tool for CPython C extensions",
Expand All @@ -37,5 +37,5 @@ def recurse_files(directory):
],
license="MIT",
python_requires=">=3.8",
install_requires=["appdirs", "patch", "requests", "tqdm"],
install_requires=["appdirs", "requests", "tqdm"],
)

0 comments on commit e24b9c2

Please sign in to comment.