unienv 0.0.1b1__tar.gz → 0.0.1b2__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.
Files changed (93) hide show
  1. unienv-0.0.1b2/PKG-INFO +73 -0
  2. {unienv-0.0.1b1 → unienv-0.0.1b2}/README.md +7 -9
  3. unienv-0.0.1b2/pyproject.toml +41 -0
  4. unienv-0.0.1b2/unienv.egg-info/PKG-INFO +73 -0
  5. unienv-0.0.1b1/PKG-INFO +0 -20
  6. unienv-0.0.1b1/pyproject.toml +0 -31
  7. unienv-0.0.1b1/unienv.egg-info/PKG-INFO +0 -20
  8. {unienv-0.0.1b1 → unienv-0.0.1b2}/LICENSE +0 -0
  9. {unienv-0.0.1b1 → unienv-0.0.1b2}/setup.cfg +0 -0
  10. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv.egg-info/SOURCES.txt +0 -0
  11. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv.egg-info/dependency_links.txt +0 -0
  12. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv.egg-info/requires.txt +0 -0
  13. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv.egg-info/top_level.txt +0 -0
  14. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/__init__.py +0 -0
  15. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/base/__init__.py +0 -0
  16. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/base/common.py +0 -0
  17. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/base/storage.py +0 -0
  18. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/base/transformations.py +0 -0
  19. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/batches/__init__.py +0 -0
  20. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/batches/backend_compat.py +0 -0
  21. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/batches/combined_batch.py +0 -0
  22. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/batches/framestack_batch.py +0 -0
  23. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/batches/slicestack_batch.py +0 -0
  24. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/integrations/pytorch.py +0 -0
  25. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/replay_buffer/__init__.py +0 -0
  26. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/replay_buffer/replay_buffer.py +0 -0
  27. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/replay_buffer/trajectory_replay_buffer.py +0 -0
  28. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/samplers/__init__.py +0 -0
  29. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/samplers/multiprocessing_sampler.py +0 -0
  30. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/samplers/slice_sampler.py +0 -0
  31. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/samplers/step_sampler.py +0 -0
  32. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/storages/common.py +0 -0
  33. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/storages/hdf5.py +0 -0
  34. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_data/storages/pytorch.py +0 -0
  35. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/__init__.py +0 -0
  36. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/backends/__init__.py +0 -0
  37. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/backends/base.py +0 -0
  38. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/backends/jax.py +0 -0
  39. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/backends/numpy.py +0 -0
  40. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/backends/pytorch.py +0 -0
  41. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/backends/serialization.py +0 -0
  42. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/env_base/__init__.py +0 -0
  43. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/env_base/env.py +0 -0
  44. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/env_base/funcenv.py +0 -0
  45. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/env_base/funcenv_wrapper.py +0 -0
  46. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/env_base/wrapper.py +0 -0
  47. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/func_wrapper/__init__.py +0 -0
  48. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/func_wrapper/transformation.py +0 -0
  49. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/__init__.py +0 -0
  50. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/space.py +0 -0
  51. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/space_utils/__init__.py +0 -0
  52. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/space_utils/batch_utils.py +0 -0
  53. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/space_utils/flatten_utils.py +0 -0
  54. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/space_utils/gym_utils.py +0 -0
  55. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/space_utils/serialization_utils.py +0 -0
  56. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/spaces/__init__.py +0 -0
  57. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/spaces/binary.py +0 -0
  58. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/spaces/box.py +0 -0
  59. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/spaces/dict.py +0 -0
  60. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/spaces/dynamic_box.py +0 -0
  61. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/spaces/graph.py +0 -0
  62. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/spaces/text.py +0 -0
  63. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/spaces/tuple.py +0 -0
  64. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/space/spaces/union.py +0 -0
  65. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/transformations/__init__.py +0 -0
  66. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/transformations/batch_and_unbatch.py +0 -0
  67. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/transformations/chained_transform.py +0 -0
  68. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/transformations/dict_transform.py +0 -0
  69. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/transformations/filter_dict.py +0 -0
  70. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/transformations/rescale.py +0 -0
  71. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/transformations/transformation.py +0 -0
  72. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/utils/seed_util.py +0 -0
  73. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/utils/symbol_util.py +0 -0
  74. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/world/__init__.py +0 -0
  75. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/world/funcnode.py +0 -0
  76. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/world/funcworld.py +0 -0
  77. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/world/node.py +0 -0
  78. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/world/world.py +0 -0
  79. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/__init__.py +0 -0
  80. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/action_rescale.py +0 -0
  81. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/backend_compat.py +0 -0
  82. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/batch_and_unbatch.py +0 -0
  83. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/control_frequency_limit.py +0 -0
  84. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/flatten.py +0 -0
  85. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/frame_stack.py +0 -0
  86. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/gym_compat.py +0 -0
  87. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/time_limit.py +0 -0
  88. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/transformation.py +0 -0
  89. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_interface/wrapper/video_record.py +0 -0
  90. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_maniskill/__init__.py +0 -0
  91. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_maniskill/wrapper/maniskill_compat.py +0 -0
  92. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_mjxplayground/__init__.py +0 -0
  93. {unienv-0.0.1b1 → unienv-0.0.1b2}/unienv_mjxplayground/wrapper/playground_compat.py +0 -0
@@ -0,0 +1,73 @@
1
+ Metadata-Version: 2.4
2
+ Name: unienv
3
+ Version: 0.0.1b2
4
+ Summary: Unified robot environment framework supporting multiple tensor and simulation backends
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://www.quantumcookie.xyz/project/unienv/
7
+ Project-URL: Documentation, https://readthedocs.org
8
+ Project-URL: Repository, https://github.com/UniEnvOrg/UniEnvPy
9
+ Project-URL: Issues, https://github.com/UniEnvOrg/UniEnvPy/issues
10
+ Project-URL: Changelog, https://github.com/UniEnvOrg/UniEnvPy/blob/main/CHANGELOG.md
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: numpy
15
+ Requires-Dist: xbarray>=0.0.1a8
16
+ Requires-Dist: pillow
17
+ Requires-Dist: h5py
18
+ Provides-Extra: dev
19
+ Requires-Dist: pytest; extra == "dev"
20
+ Provides-Extra: gymnasium
21
+ Requires-Dist: gymnasium>=0.29.0; extra == "gymnasium"
22
+ Provides-Extra: video
23
+ Requires-Dist: moviepy>=2.1; extra == "video"
24
+ Provides-Extra: mjx
25
+ Requires-Dist: playground; extra == "mjx"
26
+ Provides-Extra: maniskill
27
+ Requires-Dist: mani_skill>=3.0.0b12; extra == "maniskill"
28
+ Dynamic: license-file
29
+
30
+ # UniEnvPy
31
+
32
+ TLDR: Gymnasium Library replacement with support for multiple tensor backends
33
+
34
+ Provides an universal interface for single / parallel state-based or function-based environments. Also contains a set of utilities (such as replay buffers, wrappers, etc.) to facilitate the training of reinforcement learning agents.
35
+
36
+ ## Cross-backend Support
37
+
38
+ UniEnvPy supports multiple tensor backends with zero-copy translation layers through the DLPack protocol, and allows you to use the same abstract compute backend interface to write custom data transformation layers, environment wrappers and other utilities. This is powered by the [xbarray](https://github.com/realquantumcookie/xbarray) package, which builts on top of the Array API Standard, and supports the following backends:
39
+
40
+ - numpy
41
+ - pytorch
42
+ - jax
43
+
44
+ We also support diverse simulation environments and real robots, built on top of the abstract environment / world interface. This allows you to reuse code across different sim and real robots.
45
+
46
+ Current supported simulation environments:
47
+ - Any Environment defined in Gymnasium interface
48
+ - <s>Mujoco</s> (New code will be added in the future, but I'm currently working on refractoring World based environments)
49
+ - MJX based on [Mujoco-Playground](https://github.com/google-deepmind/mujoco_playground)
50
+ - [ManiSkill 3](https://github.com/haosulab/ManiSkill/)
51
+
52
+ Current supported real robots:
53
+ - Franka Research 3 + RobotiQ Gripper in Droid Setup
54
+ - OyMotion OHand
55
+
56
+ ## Installation
57
+
58
+ Install the package with pip
59
+
60
+ ```bash
61
+ pip install unienv
62
+ ```
63
+
64
+ You can install optional dependencies such as `gymnasium`, `mjx`, `maniskill`, `video` by running
65
+
66
+ ```bash
67
+ pip install unienv[gymnasium,mjx,maniskill,video]
68
+ ```
69
+
70
+ ## Acknowledgements
71
+
72
+ The idea of this project is inspired by [Gymnasium](https://github.com/Farama-Foundation/Gymnasium) and its predecessor [OpenAI Gym](https://github.com/openai/gym).
73
+ This library is impossible without the great work of DataAPIs Consortium and their work on the [Array API Standard](https://data-apis.org/array-api/latest/). The zero-copy translation layers are powered by the [DLPack](https://github.com/dmlc/dlpack) project.
@@ -26,21 +26,19 @@ Current supported real robots:
26
26
 
27
27
  ## Installation
28
28
 
29
- Clone down this repo
29
+ Install the package with pip
30
30
 
31
31
  ```bash
32
- git clone https://github.com/realquantumcookie/UniEnvPy
33
- cd UniEnvPy
32
+ pip install unienv
34
33
  ```
35
34
 
36
- Install the package with pip
35
+ You can install optional dependencies such as `gymnasium`, `mjx`, `maniskill`, `video` by running
37
36
 
38
37
  ```bash
39
- pip install -e .
38
+ pip install unienv[gymnasium,mjx,maniskill,video]
40
39
  ```
41
40
 
42
- You can install optional dependencies such as `gymnasium`, `mjx`, `maniskill`, `video` by running
41
+ ## Acknowledgements
43
42
 
44
- ```bash
45
- pip install -e .[gymnasium,mjx,maniskill,video]
46
- ```
43
+ The idea of this project is inspired by [Gymnasium](https://github.com/Farama-Foundation/Gymnasium) and its predecessor [OpenAI Gym](https://github.com/openai/gym).
44
+ This library is impossible without the great work of DataAPIs Consortium and their work on the [Array API Standard](https://data-apis.org/array-api/latest/). The zero-copy translation layers are powered by the [DLPack](https://github.com/dmlc/dlpack) project.
@@ -0,0 +1,41 @@
1
+ [project]
2
+ name = "unienv"
3
+ description = "Unified robot environment framework supporting multiple tensor and simulation backends"
4
+ readme = "README.md"
5
+ license = "MIT"
6
+ version = "0.0.1b2"
7
+ requires-python = ">= 3.10"
8
+ dependencies = [
9
+ "numpy",
10
+ "xbarray>=0.0.1a8",
11
+ "pillow",
12
+ "h5py",
13
+ ]
14
+
15
+ [project.urls]
16
+ Homepage = "https://www.quantumcookie.xyz/project/unienv/"
17
+ Documentation = "https://readthedocs.org"
18
+ Repository = "https://github.com/UniEnvOrg/UniEnvPy"
19
+ Issues = "https://github.com/UniEnvOrg/UniEnvPy/issues"
20
+ Changelog = "https://github.com/UniEnvOrg/UniEnvPy/blob/main/CHANGELOG.md"
21
+
22
+ [project.optional-dependencies]
23
+ dev = [
24
+ "pytest",
25
+ ]
26
+ gymnasium = [
27
+ "gymnasium>=0.29.0",
28
+ ]
29
+ video = [
30
+ "moviepy>=2.1"
31
+ ]
32
+ mjx = [
33
+ "playground",
34
+ ]
35
+ maniskill = [
36
+ "mani_skill>=3.0.0b12"
37
+ ]
38
+
39
+ [tool.setuptools.packages.find]
40
+ include = ["*"]
41
+ exclude = ["training*", "tests*"]
@@ -0,0 +1,73 @@
1
+ Metadata-Version: 2.4
2
+ Name: unienv
3
+ Version: 0.0.1b2
4
+ Summary: Unified robot environment framework supporting multiple tensor and simulation backends
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://www.quantumcookie.xyz/project/unienv/
7
+ Project-URL: Documentation, https://readthedocs.org
8
+ Project-URL: Repository, https://github.com/UniEnvOrg/UniEnvPy
9
+ Project-URL: Issues, https://github.com/UniEnvOrg/UniEnvPy/issues
10
+ Project-URL: Changelog, https://github.com/UniEnvOrg/UniEnvPy/blob/main/CHANGELOG.md
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: numpy
15
+ Requires-Dist: xbarray>=0.0.1a8
16
+ Requires-Dist: pillow
17
+ Requires-Dist: h5py
18
+ Provides-Extra: dev
19
+ Requires-Dist: pytest; extra == "dev"
20
+ Provides-Extra: gymnasium
21
+ Requires-Dist: gymnasium>=0.29.0; extra == "gymnasium"
22
+ Provides-Extra: video
23
+ Requires-Dist: moviepy>=2.1; extra == "video"
24
+ Provides-Extra: mjx
25
+ Requires-Dist: playground; extra == "mjx"
26
+ Provides-Extra: maniskill
27
+ Requires-Dist: mani_skill>=3.0.0b12; extra == "maniskill"
28
+ Dynamic: license-file
29
+
30
+ # UniEnvPy
31
+
32
+ TLDR: Gymnasium Library replacement with support for multiple tensor backends
33
+
34
+ Provides an universal interface for single / parallel state-based or function-based environments. Also contains a set of utilities (such as replay buffers, wrappers, etc.) to facilitate the training of reinforcement learning agents.
35
+
36
+ ## Cross-backend Support
37
+
38
+ UniEnvPy supports multiple tensor backends with zero-copy translation layers through the DLPack protocol, and allows you to use the same abstract compute backend interface to write custom data transformation layers, environment wrappers and other utilities. This is powered by the [xbarray](https://github.com/realquantumcookie/xbarray) package, which builts on top of the Array API Standard, and supports the following backends:
39
+
40
+ - numpy
41
+ - pytorch
42
+ - jax
43
+
44
+ We also support diverse simulation environments and real robots, built on top of the abstract environment / world interface. This allows you to reuse code across different sim and real robots.
45
+
46
+ Current supported simulation environments:
47
+ - Any Environment defined in Gymnasium interface
48
+ - <s>Mujoco</s> (New code will be added in the future, but I'm currently working on refractoring World based environments)
49
+ - MJX based on [Mujoco-Playground](https://github.com/google-deepmind/mujoco_playground)
50
+ - [ManiSkill 3](https://github.com/haosulab/ManiSkill/)
51
+
52
+ Current supported real robots:
53
+ - Franka Research 3 + RobotiQ Gripper in Droid Setup
54
+ - OyMotion OHand
55
+
56
+ ## Installation
57
+
58
+ Install the package with pip
59
+
60
+ ```bash
61
+ pip install unienv
62
+ ```
63
+
64
+ You can install optional dependencies such as `gymnasium`, `mjx`, `maniskill`, `video` by running
65
+
66
+ ```bash
67
+ pip install unienv[gymnasium,mjx,maniskill,video]
68
+ ```
69
+
70
+ ## Acknowledgements
71
+
72
+ The idea of this project is inspired by [Gymnasium](https://github.com/Farama-Foundation/Gymnasium) and its predecessor [OpenAI Gym](https://github.com/openai/gym).
73
+ This library is impossible without the great work of DataAPIs Consortium and their work on the [Array API Standard](https://data-apis.org/array-api/latest/). The zero-copy translation layers are powered by the [DLPack](https://github.com/dmlc/dlpack) project.
unienv-0.0.1b1/PKG-INFO DELETED
@@ -1,20 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: unienv
3
- Version: 0.0.1b1
4
- Requires-Python: >=3.10
5
- License-File: LICENSE
6
- Requires-Dist: numpy
7
- Requires-Dist: xbarray>=0.0.1a8
8
- Requires-Dist: pillow
9
- Requires-Dist: h5py
10
- Provides-Extra: dev
11
- Requires-Dist: pytest; extra == "dev"
12
- Provides-Extra: gymnasium
13
- Requires-Dist: gymnasium>=0.29.0; extra == "gymnasium"
14
- Provides-Extra: video
15
- Requires-Dist: moviepy>=2.1; extra == "video"
16
- Provides-Extra: mjx
17
- Requires-Dist: playground; extra == "mjx"
18
- Provides-Extra: maniskill
19
- Requires-Dist: mani_skill>=3.0.0b12; extra == "maniskill"
20
- Dynamic: license-file
@@ -1,31 +0,0 @@
1
- [project]
2
- name = "unienv"
3
- version = "0.0.1b1"
4
- requires-python = ">= 3.10"
5
- dependencies = [
6
- "numpy",
7
- "xbarray>=0.0.1a8",
8
- "pillow",
9
- "h5py",
10
- ]
11
-
12
- [project.optional-dependencies]
13
- dev = [
14
- "pytest",
15
- ]
16
- gymnasium = [
17
- "gymnasium>=0.29.0",
18
- ]
19
- video = [
20
- "moviepy>=2.1"
21
- ]
22
- mjx = [
23
- "playground",
24
- ]
25
- maniskill = [
26
- "mani_skill>=3.0.0b12"
27
- ]
28
-
29
- [tool.setuptools.packages.find]
30
- include = ["*"]
31
- exclude = ["training*", "tests*"]
@@ -1,20 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: unienv
3
- Version: 0.0.1b1
4
- Requires-Python: >=3.10
5
- License-File: LICENSE
6
- Requires-Dist: numpy
7
- Requires-Dist: xbarray>=0.0.1a8
8
- Requires-Dist: pillow
9
- Requires-Dist: h5py
10
- Provides-Extra: dev
11
- Requires-Dist: pytest; extra == "dev"
12
- Provides-Extra: gymnasium
13
- Requires-Dist: gymnasium>=0.29.0; extra == "gymnasium"
14
- Provides-Extra: video
15
- Requires-Dist: moviepy>=2.1; extra == "video"
16
- Provides-Extra: mjx
17
- Requires-Dist: playground; extra == "mjx"
18
- Provides-Extra: maniskill
19
- Requires-Dist: mani_skill>=3.0.0b12; extra == "maniskill"
20
- Dynamic: license-file
File without changes
File without changes