@@ -247,18 +247,19 @@ def run(self):
247
247
version = STPYV8_VERSION ,
248
248
description = "Python Wrapper for Google V8 Engine" ,
249
249
long_description = open ("README.md" ).read (),
250
- platforms = "x86" ,
250
+ platforms = [ "Linux" , "MacOS" , "Windows" ] ,
251
251
author = "Philip Syme, Angelo Dell'Aera" ,
252
252
url = "https://github.com/cloudflare/stpyv8" ,
253
253
license = "Apache License 2.0" ,
254
254
py_modules = ["STPyV8" ],
255
255
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" ],
257
258
data_files = [
258
259
(ICU_DATA_PACKAGE_FOLDER , [ICU_DATA_V8_FILE_PATH ]),
259
260
],
260
261
classifiers = [
261
- "Development Status :: 4 - Beta " ,
262
+ "Development Status :: 5 - Production/Stable " ,
262
263
"Environment :: Plugins" ,
263
264
"Intended Audience :: Developers" ,
264
265
"Intended Audience :: System Administrators" ,
@@ -273,10 +274,12 @@ def run(self):
273
274
"Topic :: Utilities" ,
274
275
"Operating System :: POSIX :: Linux" ,
275
276
"Operating System :: MacOS :: MacOS X" ,
277
+ "Operating System :: Microsoft :: Windows" ,
276
278
"Programming Language :: Python :: 3" ,
277
279
"Programming Language :: Python :: 3.9" ,
278
280
"Programming Language :: Python :: 3.10" ,
279
281
"Programming Language :: Python :: 3.11" ,
282
+ "Programming Language :: Python :: 3.12" ,
280
283
],
281
284
long_description_content_type = "text/markdown" ,
282
285
cmdclass = dict (
0 commit comments