Skip to content

Commit 37ae2c5

Browse files
authored
Merge pull request #113 from olebedev/oleg/update-setup-py
Update setup.py
2 parents 31b1535 + 6989b9d commit 37ae2c5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -247,13 +247,14 @@ def run(self):
247247
version=STPYV8_VERSION,
248248
description="Python Wrapper for Google V8 Engine",
249249
long_description=open("README.md").read(),
250-
platforms="x86",
250+
platforms=["Linux", "MacOS", "Windows"],
251251
author="Philip Syme, Angelo Dell'Aera",
252252
url="https://github.com/cloudflare/stpyv8",
253253
license="Apache License 2.0",
254254
py_modules=["STPyV8"],
255255
ext_modules=[stpyv8],
256-
install_requires=["wheel", "importlib_resources; python_version < '3.10'"],
256+
install_requires=["importlib_resources; python_version < '3.10'"],
257+
setup_requires=["wheel"],
257258
data_files=[
258259
(ICU_DATA_PACKAGE_FOLDER, [ICU_DATA_V8_FILE_PATH]),
259260
],

0 commit comments

Comments
 (0)