From 6989b9d471e8731901eb1b21d8f423eadc6b8398 Mon Sep 17 00:00:00 2001 From: Oleg Lebedev Date: Wed, 3 Jul 2024 17:25:26 +1000 Subject: [PATCH] update setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d126acca..b277ffe6 100644 --- a/setup.py +++ b/setup.py @@ -247,13 +247,14 @@ def run(self): version=STPYV8_VERSION, description="Python Wrapper for Google V8 Engine", long_description=open("README.md").read(), - platforms="x86", + platforms=["Linux", "MacOS", "Windows"], author="Philip Syme, Angelo Dell'Aera", url="https://github.com/cloudflare/stpyv8", license="Apache License 2.0", py_modules=["STPyV8"], ext_modules=[stpyv8], - install_requires=["wheel", "importlib_resources; python_version < '3.10'"], + install_requires=["importlib_resources; python_version < '3.10'"], + setup_requires=["wheel"], data_files=[ (ICU_DATA_PACKAGE_FOLDER, [ICU_DATA_V8_FILE_PATH]), ],