-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use fixed versions and add C++ support
- Loading branch information
Showing
5 changed files
with
54 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ def recurse_files(directory): | |
|
||
setuptools.setup( | ||
name="wasmpy-build", | ||
version="0.3.3", | ||
version="0.4.0", | ||
author="Olivia Ryan", | ||
author_email="[email protected]", | ||
description="WebAssembly build tool for CPython C extensions", | ||
|
@@ -25,7 +25,12 @@ def recurse_files(directory): | |
url="https://github.com/olivi-r/wasmpy-build", | ||
packages=["wasmpy_build"], | ||
package_data={"wasmpy_build": recurse_files("wasmpy_build/include")}, | ||
entry_points={"console_scripts": ["wasmpy-build=wasmpy_build:build"]}, | ||
entry_points={ | ||
"console_scripts": [ | ||
"wasmpy-build=wasmpy_build:buildc", | ||
"wasmpy-build++=wasmpy_build:buidcpp", | ||
] | ||
}, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.