isaacsim-core 4.0.0.0__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 (2) hide show
  1. PKG-INFO +23 -0
  2. pyproject.toml +6 -0
PKG-INFO ADDED
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.1
2
+ Name: isaacsim-core
3
+ Version: 4.0.0.0
4
+ Summary: Isaac Sim core extensions and APIs
5
+ Author: Isaac Sim team
6
+ License: NVIDIA Proprietary Software
7
+ Project-URL: Home page, https://developer.nvidia.com/isaac-sim
8
+ Project-URL: Documentation, https://docs.omniverse.nvidia.com/isaacsim/latest/index.html
9
+ Project-URL: Forum, https://forums.developer.nvidia.com/c/omniverse/simulation/69
10
+ Keywords: nvidia,omniverse,isaacsim,core
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: Other/Proprietary License
13
+ Requires-Python: ==3.10.*
14
+ Requires-Dist: isaacsim-kernel ==4.0.0.0
15
+ Requires-Dist: numpy <2.0.0
16
+ Requires-Dist: scipy
17
+ Requires-Dist: matplotlib
18
+ Requires-Dist: torch >=2.2.0
19
+ Requires-Dist: opencv-python
20
+ Requires-Dist: psutil
21
+ Requires-Dist: boto3
22
+ Requires-Dist: pyyaml
23
+
pyproject.toml ADDED
@@ -0,0 +1,6 @@
1
+ # SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2
3
+
4
+ [build-system]
5
+ requires = ["nvidia-stub"]
6
+ build-backend = "nvidia_stub.buildapi"