blob: ed5f4d3bbdd26946c8aa23289fffc6ce1c937388 [file] [log] [blame]
Mate Toth-Pal51b61982022-03-17 14:19:30 +01001# -----------------------------------------------------------------------------
2# Copyright (c) 2019, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6# -----------------------------------------------------------------------------
7
8from setuptools import setup
9
10setup(
11 name='iatverifier',
12 version='0.1',
13 packages=[
14 'iatverifier',
15 ],
16 scripts=[
17 'scripts/check_iat',
18 'scripts/compile_token',
19 'scripts/decompile_token',
20 ],
21 python_requires='>=3.6',
22 install_requires=[
23 'cbor2',
24 'cryptography',
25 'ecdsa',
Mate Toth-Pal4d9d07f2023-01-31 18:15:15 +010026 'pycose==0.1.2',
Mate Toth-Pal51b61982022-03-17 14:19:30 +010027 'pyyaml',
Thomas Fossati833ca652024-04-26 08:47:09 +000028 'pyyaml-include',
Mate Toth-Pal51b61982022-03-17 14:19:30 +010029 ],
30)