Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# SCM syntax highlighting & preventing 3-way merges
pixi.lock merge=binary linguist-language=YAML linguist-generated=true -diff
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,6 @@ dmypy.json
.pytype/

# Cython debug symbols
cython_debug/
cython_debug/# pixi environments
.pixi/*
!.pixi/config.toml
1 change: 1 addition & 0 deletions .pixi/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pinning-strategy = "no-pin"
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ conda activate visualizer-env
conda install -c robotology robot-log-visualizer
```

### 🧚 Install with pixi

You can also run the application using `pixi`:

```console
Comment thread
traversaro marked this conversation as resolved.
pixi run robot-log-visualizer
```

See the pixi homepage: [pixi](https://pixi.run).

### 🐍 Install from `pip` with apt python

Install `python3`, if not installed (in **Ubuntu 20.04**):
Expand Down Expand Up @@ -48,7 +58,7 @@ python -m pip install git+https://github.com/ami-iit/robot-log-visualizer.git

## 🏃 Usage

Once you have installed the `robot-log-visualizer` you can run it from the terminal
Once you have installed the `robot-log-visualizer` you can run it from the terminal.

[robot-log-visualizer.webm](https://github.com/ami-iit/robot-log-visualizer/assets/16744101/3fd5c516-da17-4efa-b83b-392b5ce1383b)

Expand Down
8,103 changes: 8,103 additions & 0 deletions pixi.lock

Large diffs are not rendered by default.

80 changes: 80 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,85 @@ requires = [
"setuptools_scm[toml]>=6.0",
]

[project]
name = "robot-log-visualizer"
description = "Visualizer for robot logger"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Giulio Romualdi", email = "giulio.romualdi@gmail.com" },
]
keywords = [
"robotics",
"visualization",
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development",
"Framework :: Robot Framework",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"idyntree >= 10.2.0",
"meshcat",
"numpy",
"PyQt5",
"PyQtWebEngine",
"qtpy",
"pyqtconsole",
"h5py",
"pyqtgraph",
]
dynamic = ["version"]

[project.urls]
Homepage = "https://github.com/gbionics/robot-log-visualizer"
Changelog = "https://github.com/gbionics/robot-log-visualizer/releases"
Tracker = "https://github.com/gbionics/robot-log-visualizer/issues"
Source = "https://github.com/gbionics/robot-log-visualizer"

[project.scripts]
robot-log-visualizer = "robot_log_visualizer.__main__:main"

[tool.setuptools]
include-package-data = true
packages = { find = {} }

[tool.setuptools.package-data]
"*" = ["*.png", "*.svg", "*.ui"]

[tool.setuptools_scm]
local_scheme = "dirty-tag"

[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "win-64"]

[tool.pixi.pypi-dependencies]
robot-log-visualizer = { path = ".", editable = true }

[tool.pixi.tasks]

[tool.pixi.dependencies]
numpy = "*"
qtpy = "*"
pyqt = "*"
pyqtwebengine = "*"
pyside2 = "*"
pyqtgraph = "*"
matplotlib = "*"
h5py = "*"
gst-plugins-good = "*"
gst-plugins-bad = "*"
idyntree = "*"
pyqtconsole = "*"
meshcat-python = "*"

59 changes: 0 additions & 59 deletions setup.cfg

This file was deleted.