blob: 5b7ffc4114359b230a9caa28b8eb6ef1ae76c39a [file] [log] [blame]
Jeremy Johnson2ec34942021-12-14 16:34:05 +00001# Copyright (c) 2021-2022 Arm Limited.
2# SPDX-License-Identifier: Apache-2.0
3
4[metadata]
5name = tosa-tools
6# version = done by setuptools_scm in pyproject.toml
7author = Arm Limited
8#author_email =
9description = TOSA tools
10long_description = file: README.md
11long_description_content_type = text/markdown
12url = https://git.mlplatform.org/tosa/reference_model.git/
13project_urls =
14 Website = https://developer.mlplatform.org/w/tosa/
15classifiers =
16 Programming Language :: Python :: 3
17 License :: OSI Approved :: Apache Software License
18 Operating System :: OS Independent
19
20[options]
21install_requires =
22 numpy
23 flatbuffers == 2.0
24python_requires = >=3.6
25packages =
26 runner
27 generator
28 xunit
29 tosa
30 serializer
31package_dir =
32 = verif
33 xunit = scripts/xunit
34 tosa = thirdparty/serialization_lib/python/tosa
35 serializer = thirdparty/serialization_lib/python/serializer
36
37[options.entry_points]
38console_scripts =
39 tosa_verif_run_ref = runner.tosa_verif_run_ref:main
40 tosa_verif_build_tests = generator.tosa_verif_build_tests:main