Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add adistream CLI tool #496

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
include LICENSE
include README.md
include adi/*
include adi/tools/*

exclude setup.cfg

Expand Down
5 changes: 5 additions & 0 deletions adi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,10 @@
except ImportError:
pass

try:
from adi.tools.adistream import run_adi_stream
except ImportError:
pass

__version__ = "0.0.17"
name = "Analog Devices Hardware Interfaces"
3 changes: 3 additions & 0 deletions adi/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Copyright (C) 2023-2024 Analog Devices, Inc.
#
# SPDX short identifier: ADIBSD
Loading
Loading