aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 5b7ffc4114359b230a9caa28b8eb6ef1ae76c39a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright (c) 2021-2022 Arm Limited.
# SPDX-License-Identifier: Apache-2.0

[metadata]
name = tosa-tools
# version = done by setuptools_scm in pyproject.toml
author = Arm Limited
#author_email =
description = TOSA tools
long_description = file: README.md
long_description_content_type = text/markdown
url = https://git.mlplatform.org/tosa/reference_model.git/
project_urls =
    Website = https://developer.mlplatform.org/w/tosa/
classifiers =
    Programming Language :: Python :: 3
    License :: OSI Approved :: Apache Software License
    Operating System :: OS Independent

[options]
install_requires =
    numpy
    flatbuffers == 2.0
python_requires = >=3.6
packages =
    runner
    generator
    xunit
    tosa
    serializer
package_dir =
    = verif
    xunit = scripts/xunit
    tosa = thirdparty/serialization_lib/python/tosa
    serializer = thirdparty/serialization_lib/python/serializer

[options.entry_points]
console_scripts =
    tosa_verif_run_ref = runner.tosa_verif_run_ref:main
    tosa_verif_build_tests = generator.tosa_verif_build_tests:main