diff --git a/platforms/python/MANIFEST.in b/platforms/python/MANIFEST.in index a5bebad..6154527 100644 --- a/platforms/python/MANIFEST.in +++ b/platforms/python/MANIFEST.in @@ -1 +1,3 @@ graft m3/ +include README.md +include LICENSE diff --git a/platforms/python/setup.py b/platforms/python/setup.py index f711b63..208365a 100644 --- a/platforms/python/setup.py +++ b/platforms/python/setup.py @@ -1,15 +1,12 @@ from setuptools import setup from distutils.core import Extension from glob import glob -from pathlib import Path - -HERE = Path(__file__).parent SOURCES = glob('m3/*.c') + ['m3module.c'] setup( name = "pywasm3", - version = "0.0.2", + version = "0.4.8", description = "The fastest WebAssembly interpreter", platforms = "any", url = "https://github.com/wasm3/wasm3", @@ -17,7 +14,7 @@ setup( author = "Volodymyr Shymanskyy", author_email = "vshymanskyi@gmail.com", - long_description = (HERE / "README.md").read_text(), + long_description = open("README.md").read(), long_description_content_type = "text/markdown", ext_modules=[