moteus-gui 0.3.76__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- moteus-gui-0.3.76/PKG-INFO +30 -0
- moteus-gui-0.3.76/README.md +11 -0
- moteus-gui-0.3.76/moteus_gui/__init__.py +0 -0
- moteus-gui-0.3.76/moteus_gui/tview.py +1300 -0
- moteus-gui-0.3.76/moteus_gui/tview_main_window.ui +199 -0
- moteus-gui-0.3.76/moteus_gui/version.py +15 -0
- moteus-gui-0.3.76/moteus_gui.egg-info/PKG-INFO +30 -0
- moteus-gui-0.3.76/moteus_gui.egg-info/SOURCES.txt +12 -0
- moteus-gui-0.3.76/moteus_gui.egg-info/dependency_links.txt +1 -0
- moteus-gui-0.3.76/moteus_gui.egg-info/entry_points.txt +3 -0
- moteus-gui-0.3.76/moteus_gui.egg-info/requires.txt +10 -0
- moteus-gui-0.3.76/moteus_gui.egg-info/top_level.txt +1 -0
- moteus-gui-0.3.76/setup.cfg +4 -0
- moteus-gui-0.3.76/setup.py +67 -0
@@ -0,0 +1,30 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: moteus-gui
|
3
|
+
Version: 0.3.76
|
4
|
+
Summary: moteus brushless controller graphical user interfaces
|
5
|
+
Home-page: https://github.com/mjbots/moteus
|
6
|
+
Author: mjbots Robotic Systems
|
7
|
+
Author-email: info@mjbots.com
|
8
|
+
License: UNKNOWN
|
9
|
+
Keywords: moteus
|
10
|
+
Platform: UNKNOWN
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
12
|
+
Classifier: Intended Audience :: Developers
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
15
|
+
Requires-Python: >=3.7, <4
|
16
|
+
Description-Content-Type: text/markdown
|
17
|
+
|
18
|
+
# moteus GUI tools #
|
19
|
+
|
20
|
+
This package contains the `tview` graphical tool for interacting with
|
21
|
+
moteus controllers.
|
22
|
+
|
23
|
+
To install and run:
|
24
|
+
|
25
|
+
```
|
26
|
+
pip3 install moteus-gui
|
27
|
+
python3 -m moteus_gui.tview
|
28
|
+
```
|
29
|
+
|
30
|
+
|
File without changes
|