1# Copyright (c) 2024 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14[project] 15name = "vmb" 16version = "0.0.3" 17description = "Virtual Machine Benchmarks" 18readme = "readme.md" 19requires-python = ">=3.7" 20license = {text = "Apache 2.0"} 21keywords = ["benchmarks"] 22classifiers = [ 23 "Development Status :: 3 - Alpha", 24 "Intended Audience :: Developers", 25 "Topic :: Software Development :: Benchmark Tools", 26 "Programming Language :: Python :: 3", 27] 28 29[project.urls] 30"Source" = "https://gitee.com/openharmony/arkcompiler_runtime_core/tree/master/static_core/tests/vm-benchmarks" 31 32[project.scripts] 33vmb = "vmb:main" 34 35[tool.setuptools] 36package-data = {"vmb" = ["templates/*"]} 37 38[build-system] 39requires = ["setuptools>=43.0.0", "wheel"] 40build-backend = "setuptools.build_meta" 41 42[tool.mypy] 43disable_error_code = ["attr-defined"] 44