blob: b68eb9c9783ece1b5b1bcb1a758cc11a5e14c748 [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
# Install this one as package
from setuptools import setup, find_packages
setup(name="otbnsim",
packages=find_packages(),
install_requires=["riscv-model>=0.6.2", "lark-parser", "attrdict"],
entry_points={
"console_scripts": [
"otbn-python-model = otbnsim.main:main",
"otbn-asm = otbnsim.asm:main",
],
})