blob: b7dcbe88b65303cb5c811e64efc9ade64ca9447f [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',
Thomas Fossatif4e1ca32024-08-16 16:01:31 +000026 'pycose==1.1.0',
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)