tinysim 0.0.1__tar.gz → 0.0.2__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.
- {tinysim-0.0.1 → tinysim-0.0.2}/PKG-INFO +3 -3
- {tinysim-0.0.1 → tinysim-0.0.2}/README.md +2 -2
- {tinysim-0.0.1 → tinysim-0.0.2}/pyproject.toml +1 -1
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim.egg-info/PKG-INFO +3 -3
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim_warp/cart_pole/__init__.py +1 -1
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim_warp/quadruped/__init__.py +1 -1
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim_warp/simple_quadruped/__init__.py +1 -1
- {tinysim-0.0.1 → tinysim-0.0.2}/setup.cfg +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/__init__.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/_tk_base.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/flappy/__init__.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/flappy/sim.js +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/flappy/tk.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/flappy/widget.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/frogger/__init__.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/frogger/sim.js +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/frogger/tk.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/frogger/widget.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/mountain_car/__init__.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/mountain_car/sim.js +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/mountain_car/styles.css +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/mountain_car/tk.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/mountain_car/widget.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/simple_amr/__init__.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/simple_amr/example_maps.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/simple_amr/sim.js +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/simple_amr/styles.css +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/simple_amr/widget.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/topdown_driving/__init__.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/topdown_driving/sim.js +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/topdown_driving/tk.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/topdown_driving/track_0.json +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim/topdown_driving/widget.py +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim.egg-info/SOURCES.txt +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim.egg-info/dependency_links.txt +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim.egg-info/requires.txt +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim.egg-info/top_level.txt +0 -0
- {tinysim-0.0.1 → tinysim-0.0.2}/tinysim_warp/simple_quadruped/simple_quadruped.urdf +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tinysim
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: small modular simulation environments
|
|
5
5
|
Author-email: Matthew Taylor <matthew.taylor.andre@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/MatthewAndreTaylor/TinySim
|
|
@@ -27,8 +27,8 @@ Requires-Dist: warp-lang==1.8.1; extra == "warp"
|
|
|
27
27
|
|
|
28
28
|
# TinySim
|
|
29
29
|
|
|
30
|
-
[](https://matthewandretaylor.github.io/
|
|
30
|
+
[](https://pypi.org/project/tinysim)
|
|
31
|
+
[](https://matthewandretaylor.github.io/TinySim/lab?path=example.ipynb)
|
|
32
32
|
|
|
33
33
|
The goal of this project is to create more minimal simulation environments for robotics and machine learning.
|
|
34
34
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
# TinySim
|
|
3
3
|
|
|
4
|
-
[](https://matthewandretaylor.github.io/
|
|
4
|
+
[](https://pypi.org/project/tinysim)
|
|
5
|
+
[](https://matthewandretaylor.github.io/TinySim/lab?path=example.ipynb)
|
|
6
6
|
|
|
7
7
|
The goal of this project is to create more minimal simulation environments for robotics and machine learning.
|
|
8
8
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tinysim
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: small modular simulation environments
|
|
5
5
|
Author-email: Matthew Taylor <matthew.taylor.andre@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/MatthewAndreTaylor/TinySim
|
|
@@ -27,8 +27,8 @@ Requires-Dist: warp-lang==1.8.1; extra == "warp"
|
|
|
27
27
|
|
|
28
28
|
# TinySim
|
|
29
29
|
|
|
30
|
-
[](https://matthewandretaylor.github.io/
|
|
30
|
+
[](https://pypi.org/project/tinysim)
|
|
31
|
+
[](https://matthewandretaylor.github.io/TinySim/lab?path=example.ipynb)
|
|
32
32
|
|
|
33
33
|
The goal of this project is to create more minimal simulation environments for robotics and machine learning.
|
|
34
34
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|