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]), ],