We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 31b1535 + 6989b9d commit 37ae2c5Copy full SHA for 37ae2c5
setup.py
@@ -247,13 +247,14 @@ def run(self):
247
version=STPYV8_VERSION,
248
description="Python Wrapper for Google V8 Engine",
249
long_description=open("README.md").read(),
250
- platforms="x86",
+ platforms=["Linux", "MacOS", "Windows"],
251
author="Philip Syme, Angelo Dell'Aera",
252
url="https://github.com/cloudflare/stpyv8",
253
license="Apache License 2.0",
254
py_modules=["STPyV8"],
255
ext_modules=[stpyv8],
256
- install_requires=["wheel", "importlib_resources; python_version < '3.10'"],
+ install_requires=["importlib_resources; python_version < '3.10'"],
257
+ setup_requires=["wheel"],
258
data_files=[
259
(ICU_DATA_PACKAGE_FOLDER, [ICU_DATA_V8_FILE_PATH]),
260
],
0 commit comments